Show More
@@ -121,7 +121,7 b' def list_bundled_profiles():' | |||||
121 |
|
121 | |||
122 |
|
122 | |||
123 | class ProfileLocate(BaseIPythonApplication): |
|
123 | class ProfileLocate(BaseIPythonApplication): | |
124 | description = """print the path an IPython profile dir""" |
|
124 | description = """print the path to an IPython profile dir""" | |
125 |
|
125 | |||
126 | def parse_command_line(self, argv=None): |
|
126 | def parse_command_line(self, argv=None): | |
127 | super(ProfileLocate, self).parse_command_line(argv) |
|
127 | super(ProfileLocate, self).parse_command_line(argv) | |
@@ -299,6 +299,7 b' class ProfileApp(Application):' | |||||
299 | subcommands = Dict(dict( |
|
299 | subcommands = Dict(dict( | |
300 | create = (ProfileCreate, ProfileCreate.description.splitlines()[0]), |
|
300 | create = (ProfileCreate, ProfileCreate.description.splitlines()[0]), | |
301 | list = (ProfileList, ProfileList.description.splitlines()[0]), |
|
301 | list = (ProfileList, ProfileList.description.splitlines()[0]), | |
|
302 | locate = (ProfileLocate, ProfileLocate.description.splitlines()[0]), | |||
302 | )) |
|
303 | )) | |
303 |
|
304 | |||
304 | def start(self): |
|
305 | def start(self): | |
@@ -310,4 +311,3 b' class ProfileApp(Application):' | |||||
310 | self.exit(1) |
|
311 | self.exit(1) | |
311 | else: |
|
312 | else: | |
312 | return self.subapp.start() |
|
313 | return self.subapp.start() | |
313 |
|
General Comments 0
You need to be logged in to leave comments.
Login now