diff -r e7ae807554d9 -r 613064b49331 server/serverctl.py --- a/server/serverctl.py Fri Sep 11 12:42:37 2009 +0200 +++ b/server/serverctl.py Fri Sep 11 15:55:15 2009 +0200 @@ -210,12 +210,12 @@ cmdname = 'start' cfgname = 'repository' - def start_command(self, ctlconf, debug): + def start_server(self, ctlconf, debug): command = ['cubicweb-ctl start-repository '] if debug: command.append('--debug') command.append(self.config.appid) - return ' '.join(command) + os.system(' '.join(command)) class RepositoryStopHandler(CommandHandler):