[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] avoid double negation in rejection message



---
 daklib/checks.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/daklib/checks.py b/daklib/checks.py
index 0121e59..8ee1930 100644
--- a/daklib/checks.py
+++ b/daklib/checks.py
@@ -735,7 +735,7 @@ class NoSourceOnlyCheck(Check):
            and 'unstable' not in changes.distributions \
            and 'sid' not in changes.distributions \
            and changes.source.package_list.has_arch_indep_packages():
-            raise Reject('Uploads not including architecture-independent packages are not allowed.')
+            raise Reject('Uploads must include architecture-independent packages.')
 
         return True
 
-- 
2.1.4



Reply to: