# HG changeset patch
# User Matt Mackall <mpm@selenic.com>
# Date 2007-08-15 21:55:15
# Node ID 2da57dc04aa85e3ea11b473bd6f6b4217b18c058
# Parent  18a9fbb5cd78d821c2956f1d47329b5f8e48490a

verify: report expected linkrev

diff --git a/mercurial/verify.py b/mercurial/verify.py
--- a/mercurial/verify.py
+++ b/mercurial/verify.py
@@ -164,6 +164,7 @@ def _verify(repo):
             if flr not in filelinkrevs.get(f, []):
                 err(_("%s:%s points to unexpected changeset %d")
                         % (f, short(n), flr))
+                err(_("expecting one of %s" % filelinkrevs.get(f, [])))
             else:
                 filelinkrevs[f].remove(flr)