More doc strings for methods

This commit is contained in:
Greg Neagle
2014-03-02 14:59:40 -08:00
parent 9df5cab5ac
commit 0e2dd88817
@@ -35,10 +35,11 @@ class MSUAppDelegate(NSObject):
statusController = IBOutlet()
def applicationShouldTerminate_(self, sender):
# called if user selects 'Quit' from menu
'''Called if user selects 'Quit' from menu'''
return self.mainWindowController.appShouldTerminate()
def applicationDidFinishLaunching_(self, sender):
'''NSApplication delegate method called at launch'''
# Prevent automatic relaunching at login on Lion+
if NSApp.respondsToSelector_('disableRelaunchOnLogin'):
NSApp.disableRelaunchOnLogin()