changeset 11618 | 83070a9cd526 |
parent 11597 | 9141d2c9e5a5 |
child 11619 | 48667abddd60 |
--- a/mercurial/wireproto.py Tue Jul 20 10:05:30 2010 +0200 +++ b/mercurial/wireproto.py Fri Jul 16 19:01:34 2010 +0200 @@ -134,14 +134,11 @@ # server side def dispatch(repo, proto, command): - if command not in commands: - return False func, spec = commands[command] args = proto.getargs(spec) r = func(repo, proto, *args) if r != None: proto.respond(r) - return True def between(repo, proto, pairs): pairs = [decodelist(p, '-') for p in pairs.split(" ")]