Show More
@@ -104,11 +104,9 b' class BaseIPythonApplication(Application):' | |||
|
104 | 104 | def _config_file_paths_default(self): |
|
105 | 105 | return [os.getcwdu()] |
|
106 | 106 | |
|
107 | profile = Unicode(u'', config=True, | |
|
107 | profile = Unicode(u'default', config=True, | |
|
108 | 108 | help="""The IPython profile to use.""" |
|
109 | 109 | ) |
|
110 | def _profile_default(self): | |
|
111 | return "python3" if py3compat.PY3 else "default" | |
|
112 | 110 | |
|
113 | 111 | def _profile_changed(self, name, old, new): |
|
114 | 112 | self.builtin_profile_dir = os.path.join( |
@@ -230,7 +228,7 b' class BaseIPythonApplication(Application):' | |||
|
230 | 228 | p = ProfileDir.find_profile_dir_by_name(self.ipython_dir, self.profile, self.config) |
|
231 | 229 | except ProfileDirError: |
|
232 | 230 | # not found, maybe create it (always create default profile) |
|
233 |
if self.auto_create or self.profile== |
|
|
231 | if self.auto_create or self.profile=='default': | |
|
234 | 232 | try: |
|
235 | 233 | p = ProfileDir.create_profile_dir_by_name(self.ipython_dir, self.profile, self.config) |
|
236 | 234 | except ProfileDirError: |
General Comments 0
You need to be logged in to leave comments.
Login now