From: Chris Lamb Date: Mon, 24 Aug 2015 01:41:46 +0000 (+0200) Subject: daliblib/dak_exceptions: Add trailing comma to avoid future VCS noise X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=94a30eeb0a8fdf36b43685740a718ba13b1f692f;p=dak.git daliblib/dak_exceptions: Add trailing comma to avoid future VCS noise Signed-off-by: Chris Lamb --- diff --git a/daklib/dak_exceptions.py b/daklib/dak_exceptions.py index ef24fd75..e111afdd 100644 --- a/daklib/dak_exceptions.py +++ b/daklib/dak_exceptions.py @@ -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):