Mercurial > public > mercurial-scm > hg-stable
diff hgext/bugzilla.py @ 16743:38caf405d010
hgext: mark all first-party extensions as such
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 15 May 2012 14:37:49 -0500 |
parents | 525fdb738975 |
children | 2255950e1f76 |
line wrap: on
line diff
--- a/hgext/bugzilla.py Sat May 05 15:12:26 2012 -0500 +++ b/hgext/bugzilla.py Tue May 15 14:37:49 2012 -0500 @@ -282,6 +282,8 @@ from mercurial import cmdutil, mail, templater, util import re, time, urlparse, xmlrpclib +testedwith = 'internal' + class bzaccess(object): '''Base class for access to Bugzilla.''' @@ -910,4 +912,3 @@ bz.notify(bugs, util.email(ctx.user())) except Exception, e: raise util.Abort(_('Bugzilla error: %s') % e) -