##// END OF EJS Templates
Import glob as a module
Takafumi Arakaki -
Show More
@@ -19,7 +19,7 b' import sys'
19 import tempfile
19 import tempfile
20 import warnings
20 import warnings
21 from hashlib import md5
21 from hashlib import md5
22 from glob import glob
22 import glob
23
23
24 import IPython
24 import IPython
25 from IPython.testing.skipdoctest import skip_doctest
25 from IPython.testing.skipdoctest import skip_doctest
@@ -365,7 +365,7 b' def globlist(args):'
365 """
365 """
366 expanded = []
366 expanded = []
367 for a in args:
367 for a in args:
368 expanded.extend(glob(a) or [a])
368 expanded.extend(glob.glob(a) or [a])
369 return expanded
369 return expanded
370
370
371
371
General Comments 0
You need to be logged in to leave comments. Login now