# HG changeset patch # User Augie Fackler # Date 1466968893 14400 # Node ID f9e8c7662f8d63ade26acc483484a1047ae12e1b # Parent 4f1461428334aaf7aa68116516afb2152cd7e133 templatekeywords: add missing loadkeyword() call This un-breaks templatekeywords on Mercurial older than 3.8. diff --git a/hgsubversion/__init__.py b/hgsubversion/__init__.py --- a/hgsubversion/__init__.py +++ b/hgsubversion/__init__.py @@ -269,6 +269,8 @@ def svnuuidkw(**args): """:svnuuid: String. Converted subversion revision repository identifier.""" return _templatehelper(args['ctx'], 'svnuuid') +loadkeyword(templatekeyword) + def listsvnkeys(repo): keys = {} repo = repo.local()