##// END OF EJS Templates
try import path.py from several places, just in case
vivainio -
Show More
@@ -6,7 +6,14 b' new and unedited files.'
6
6
7 To be used by "upgrade" feature.
7 To be used by "upgrade" feature.
8 """
8 """
9 from IPython.Extensions.path import path
9 try:
10 from IPython.Extensions.path import path
11 except ImportError:
12 try:
13 from Extensions.path import path
14 except ImportError:
15 from path import path
16
10 import md5,pickle
17 import md5,pickle
11
18
12 def showdiff(old,new):
19 def showdiff(old,new):
@@ -2,6 +2,9 b''
2
2
3 * Magic.py (magic_rehashx): Honor no_alias list earlier in
3 * Magic.py (magic_rehashx): Honor no_alias list earlier in
4 %rehashx, to avoid clobbering builtins in ipy_profile_sh.py
4 %rehashx, to avoid clobbering builtins in ipy_profile_sh.py
5
6 * upgrade_dir.py: try import 'path' module a bit harder
7 (for %upgrade)A
5
8
6 2006-06-03 Fernando Perez <Fernando.Perez@colorado.edu>
9 2006-06-03 Fernando Perez <Fernando.Perez@colorado.edu>
7
10
General Comments 0
You need to be logged in to leave comments. Login now