##// END OF EJS Templates
Fixed, base aliases not overridden any longer
Jonathan Frederic -
Show More
@@ -87,13 +87,15 b' class NbConvertApp(BaseIPythonApplication):'
87 notebooks = List([], config=True, help="""List of notebooks to convert.
87 notebooks = List([], config=True, help="""List of notebooks to convert.
88 Search patterns are supported.""")
88 Search patterns are supported.""")
89
89
90 aliases = {'format':'NbConvertApp.export_format',
90 nbconvert_aliases = {'format':'NbConvertApp.export_format',
91 'notebooks':'NbConvertApp.notebooks',
91 'notebooks':'NbConvertApp.notebooks',
92 'writer':'NbConvertApp.writer_class'}
92 'writer':'NbConvertApp.writer_class'}
93
93
94
94
95 @catch_config_error
95 @catch_config_error
96 def initialize(self, argv=None):
96 def initialize(self, argv=None):
97 self.aliases.update(nbconvert_aliases)
98
97 super(NbConvertApp, self).initialize(argv)
99 super(NbConvertApp, self).initialize(argv)
98
100
99 #Register class here to have help with help all
101 #Register class here to have help with help all
General Comments 0
You need to be logged in to leave comments. Login now