diff hgext/gpg.py @ 12067:a4fbbe0fbc38 stable

Lowercase error messages
author Martin Geisler <mg@lazybytes.net>
date Sun, 29 Aug 2010 22:37:58 +0200
parents 40c06bbf58be
children 0d4fb319974b
line wrap: on
line diff
--- a/hgext/gpg.py	Thu Aug 26 23:11:03 2010 +0200
+++ b/hgext/gpg.py	Sun Aug 29 22:37:58 2010 +0200
@@ -227,7 +227,7 @@
         data = node2txt(repo, n, sigver)
         sig = mygpg.sign(data)
         if not sig:
-            raise util.Abort(_("Error while signing"))
+            raise util.abort(_("error while signing"))
         sig = binascii.b2a_base64(sig)
         sig = sig.replace("\n", "")
         sigmessage += "%s %s %s\n" % (hexnode, sigver, sig)