Show More
@@ -1,7 +1,7 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """Magic functions for InteractiveShell. |
|
2 | """Magic functions for InteractiveShell. | |
3 |
|
3 | |||
4 |
$Id: Magic.py 120 |
|
4 | $Id: Magic.py 1209 2006-03-12 20:34:28Z vivainio $""" | |
5 |
|
5 | |||
6 | #***************************************************************************** |
|
6 | #***************************************************************************** | |
7 | # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and |
|
7 | # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and | |
@@ -2934,7 +2934,7 b' Defaulting color scheme to \'NoColor\'"""' | |||||
2934 | """ |
|
2934 | """ | |
2935 | ip = self.getapi() |
|
2935 | ip = self.getapi() | |
2936 | ipinstallation = path(IPython.__file__).dirname() |
|
2936 | ipinstallation = path(IPython.__file__).dirname() | |
2937 | upgrade_script = ipinstallation / 'upgrade_dir.py' |
|
2937 | upgrade_script = sys.executable + " " + ipinstallation / 'upgrade_dir.py' | |
2938 | src_config = ipinstallation / 'UserConfig' |
|
2938 | src_config = ipinstallation / 'UserConfig' | |
2939 | userdir = path(ip.options().ipythondir) |
|
2939 | userdir = path(ip.options().ipythondir) | |
2940 | cmd = upgrade_script + " " + src_config + " " + userdir |
|
2940 | cmd = upgrade_script + " " + src_config + " " + userdir |
@@ -1,3 +1,4 b'' | |||||
|
1 | #!/usr/bin/env python | |||
1 | """ A script/util to upgrade all files in a directory |
|
2 | """ A script/util to upgrade all files in a directory | |
2 |
|
3 | |||
3 | This is rather conservative in its approach, only copying/overwriting |
|
4 | This is rather conservative in its approach, only copying/overwriting |
General Comments 0
You need to be logged in to leave comments.
Login now