# HG changeset patch # User Yuya Nishihara # Date 2014-05-01 10:57:25 # Node ID 816754e75f2f69c7f7b03060ead4cafba806205b # Parent 448714b79d9af242e592d9d2d6736a1bf84c9460 serve: tidy up indent level of repository not found message diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -5248,7 +5248,7 @@ def serve(ui, repo, **opts): if opts["stdio"]: if repo is None: raise error.RepoError(_("there is no Mercurial repository here" - " (.hg not found)")) + " (.hg not found)")) s = sshserver.sshserver(ui, repo) s.serve_forever()