# HG changeset patch # User Georg Brandl # Date 1299407457 -3600 # Node ID bbfae32f178ee8614f51d86d5f683fab77e059f6 # Parent 1792b8a9422bd86f0f28677187bd49e03a6b67ad hgcia: accept "queued." xmlrpc return as success diff -r 1792b8a9422b -r bbfae32f178e hgext/hgcia.py --- a/hgext/hgcia.py Mon Mar 07 15:03:10 2011 -0600 +++ b/hgext/hgcia.py Sun Mar 06 11:30:57 2011 +0100 @@ -198,7 +198,7 @@ def sendrpc(self, msg): srv = xmlrpclib.Server(self.ciaurl) res = srv.hub.deliver(msg) - if res is not True: + if res is not True and res != 'queued.': raise util.Abort(_('%s returned an error: %s') % (self.ciaurl, res))