##// END OF EJS Templates
fix missing '--' in 'ipython profile list' output
MinRK -
Show More
@@ -127,7 +127,7 b' class ProfileList(Application):'
127 127 full_path = os.path.join(path, f)
128 128 if os.path.isdir(full_path) and f.startswith('profile_'):
129 129 profile = f.split('_',1)[-1]
130 start_cmd = 'ipython profile=%s' % profile
130 start_cmd = 'ipython --profile=%s' % profile
131 131 print start_cmd + " ==> " + full_path
132 132
133 133 def start(self):
General Comments 0
You need to be logged in to leave comments. Login now