diff -r c9f4ef967a1d -r 696ab1a24ae0 mercurial/templatekw.py --- a/mercurial/templatekw.py Thu Mar 12 23:08:16 2015 -0400 +++ b/mercurial/templatekw.py Thu Mar 12 23:11:15 2015 -0400 @@ -397,7 +397,7 @@ def shownames(namespace, **args): """helper method to generate a template keyword for a namespace""" ctx = args['ctx'] - repo = ctx._repo + repo = ctx.repo() ns = repo.names[namespace] names = ns.names(repo, ctx.node()) return showlist(ns.templatename, names, plural=namespace, **args)