Skip to content
Snippets Groups Projects
Commit bbfae32f178e authored by Georg Brandl's avatar Georg Brandl
Browse files

hgcia: accept "queued." xmlrpc return as success

parent 1792b8a9422b
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment