Most of the pep8 changes finished. Be careful, things may be horribly broken.
This commit is contained in:
@ -17,13 +17,13 @@ class command():
|
||||
def shutdown(self):
|
||||
pass
|
||||
|
||||
def getDescription(self):
|
||||
def get_description(self):
|
||||
return _('get next help message')
|
||||
|
||||
def run(self):
|
||||
self.env['runtime']['helpManager'].nextIndex()
|
||||
text = self.env['runtime']['helpManager'].getHelpForCurrentIndex()
|
||||
self.env['runtime']['outputManager'].presentText(text, interrupt=True)
|
||||
self.env['runtime']['HelpManager'].next_index()
|
||||
text = self.env['runtime']['HelpManager'].get_help_for_current_index()
|
||||
self.env['runtime']['OutputManager'].present_text(text, interrupt=True)
|
||||
|
||||
def setCallback(self, callback):
|
||||
def set_callback(self, callback):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user