diff hgext/gpg.py @ 1618:ff339dd21976

Renamed c, a, d, u to modified, added, removed, unknown for users of changes()
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 12 Jan 2006 13:35:09 +0100
parents 347c44611348
children 0690d0f202e1
line wrap: on
line diff
--- a/hgext/gpg.py	Thu Jan 12 12:22:28 2006 +0100
+++ b/hgext/gpg.py	Thu Jan 12 13:35:09 2006 +0100
@@ -160,8 +160,7 @@
         repo.opener("localsigs", "ab").write(sigmessage)
         return
 
-    (c, a, d, u) = repo.changes()
-    for x in (c, a, d, u):
+    for x in repo.changes():
         if ".hgsigs" in x and not opts["force"]:
             raise util.Abort("working copy of .hgsigs is changed "
                              "(please commit .hgsigs manually"