def get_options(self): options = _Server.get_options(self) options += (Option('-n', '--revision-default', action='store_const', dest='revision_id', const=REVISION_DEFAULT, default=REVISION_WORKING_DIR, help='use files from the default branch, instead ' 'of the working directory'),) return options
def get_options(self): return Server.get_options(self) + \ (Option('--smtpport', dest='smtpport', type=int, default=self.smtpport), )
def get_options(self): return (Option('site'),) + BaseServer.get_options(self)