##// END OF EJS Templates
Merge pull request #4371 from astrosilverio/master...
Thomas Kluyver -
r13176:a846ffaf merge
parent child Browse files
Show More
@@ -121,7 +121,7 b' def list_bundled_profiles():'
121 121
122 122
123 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 126 def parse_command_line(self, argv=None):
127 127 super(ProfileLocate, self).parse_command_line(argv)
@@ -299,6 +299,7 b' class ProfileApp(Application):'
299 299 subcommands = Dict(dict(
300 300 create = (ProfileCreate, ProfileCreate.description.splitlines()[0]),
301 301 list = (ProfileList, ProfileList.description.splitlines()[0]),
302 locate = (ProfileLocate, ProfileLocate.description.splitlines()[0]),
302 303 ))
303 304
304 305 def start(self):
@@ -310,4 +311,3 b' class ProfileApp(Application):'
310 311 self.exit(1)
311 312 else:
312 313 return self.subapp.start()
313
General Comments 0
You need to be logged in to leave comments. Login now