]> git.decadent.org.uk Git - dak.git/commitdiff
daliblib/dak_exceptions: Add trailing comma to avoid future VCS noise
authorChris Lamb <lamby@debian.org>
Mon, 24 Aug 2015 01:41:46 +0000 (03:41 +0200)
committerChris Lamb <lamby@debian.org>
Mon, 24 Aug 2015 01:41:46 +0000 (03:41 +0200)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/dak_exceptions.py

index ef24fd753ef01bdcbc3e82bad63e2749e94e770d..e111afddb874c6a5a6cefcb01d0e950be6a7f027 100644 (file)
@@ -62,7 +62,7 @@ dakerrors = {
     "DBUpdateError":       """Exception raised - could not update the database""",
     "ChangesUnicodeError": """Exception raised - changes file not properly utf-8 encoded""",
     "AlreadyLockedError":  """Exception raised - package already locked by someone else""",
-    "CantGetLockError":    """Exception raised - lockfile already in use"""
+    "CantGetLockError":    """Exception raised - lockfile already in use""",
 } #: All dak exceptions
 
 def construct_dak_exception(name, description):