##// END OF EJS Templates
upgrade_dir.py => utils/upgradedir.py and updated imports.
Brian Granger -
Show More
@@ -3351,7 +3351,7 b' Defaulting color scheme to \'NoColor\'"""'
3351 """
3351 """
3352 ip = self.getapi()
3352 ip = self.getapi()
3353 ipinstallation = path(IPython.__file__).dirname()
3353 ipinstallation = path(IPython.__file__).dirname()
3354 upgrade_script = '%s "%s"' % (sys.executable,ipinstallation / 'upgrade_dir.py')
3354 upgrade_script = '%s "%s"' % (sys.executable,ipinstallation / 'utils' / 'upgradedir.py')
3355 src_config = ipinstallation / 'UserConfig'
3355 src_config = ipinstallation / 'UserConfig'
3356 userdir = path(ip.options.ipythondir)
3356 userdir = path(ip.options.ipythondir)
3357 cmd = '%s "%s" "%s"' % (upgrade_script, src_config, userdir)
3357 cmd = '%s "%s" "%s"' % (upgrade_script, src_config, userdir)
@@ -207,7 +207,7 b' def make_runners():'
207 'outputtrap.py', 'platutils.py', 'prefilter.py', 'prompts.py',
207 'outputtrap.py', 'platutils.py', 'prefilter.py', 'prompts.py',
208 'PyColorize.py', 'release.py', 'rlineimpl.py', 'shadowns.py',
208 'PyColorize.py', 'release.py', 'rlineimpl.py', 'shadowns.py',
209 'shellglobals.py', 'strdispatch.py', 'twshell.py',
209 'shellglobals.py', 'strdispatch.py', 'twshell.py',
210 'ultratb.py', 'upgrade_dir.py', 'usage.py', 'wildcard.py',
210 'ultratb.py', 'upgradedir.py', 'usage.py', 'wildcard.py',
211 # See note above for why this is skipped
211 # See note above for why this is skipped
212 # 'shell.py',
212 # 'shell.py',
213 'winconsole.py']
213 'winconsole.py']
@@ -27,3 +27,6 b' def test_import_rlineimpl():'
27
27
28 def test_import_strdispatch():
28 def test_import_strdispatch():
29 from IPython.utils import strdispatch
29 from IPython.utils import strdispatch
30
31 def test_import_upgradedir():
32 from IPython.utils import upgradedir
1 NO CONTENT: file renamed from IPython/upgrade_dir.py to IPython/utils/upgradedir.py
NO CONTENT: file renamed from IPython/upgrade_dir.py to IPython/utils/upgradedir.py
General Comments 0
You need to be logged in to leave comments. Login now