From 42545b02ccd624a354b7372be5864c8ebaedd3ba 2011-12-18 21:15:10 From: MinRK Date: 2011-12-18 21:15:10 Subject: [PATCH] fix missing '--' in 'ipython profile list' output --- diff --git a/IPython/core/profileapp.py b/IPython/core/profileapp.py index cbe53a3..31e7ec7 100644 --- a/IPython/core/profileapp.py +++ b/IPython/core/profileapp.py @@ -127,7 +127,7 @@ class ProfileList(Application): full_path = os.path.join(path, f) if os.path.isdir(full_path) and f.startswith('profile_'): profile = f.split('_',1)[-1] - start_cmd = 'ipython profile=%s' % profile + start_cmd = 'ipython --profile=%s' % profile print start_cmd + " ==> " + full_path def start(self):