]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
update debian_build: fix convertion error in exception messages
authorMathias Klette <mathias.klette@profitbricks.com>
Wed, 24 Apr 2013 18:28:59 +0000 (20:28 +0200)
committerMathias Klette <mathias.klette@profitbricks.com>
Wed, 24 Apr 2013 18:28:59 +0000 (20:28 +0200)
debian_build.py

index ef08c4957007c78d80e065ea7967448ac1403834..94d54fda0ef582df965b719ba348ca3c2afe61d6 100755 (executable)
@@ -418,11 +418,15 @@ if __name__ == '__main__':
     # enforce correct distribution in debian/changelog for master and hotfix branches
     allowed_production_distros=('stable', 'stable-proposed-updates', 'production', 'production-proposed-updates')
     if (GIT_BRANCH_NAME == 'master' or GIT_BRANCH_NAME.startswith('hotfix/')) and not distribution in allowed_production_distros:
-        logger.error('Distribution %s in debian/changelog not listed in %s' % allowed_production_distros )
+        logger.error(
+            'Distribution %s in debian/changelog not listed in %s' %(
+            distribution,
+            allowed_production_distros
+            ))
         raise Exception(
-                'Distribution %s in debian/changelog not listed in %s' % allowed_production_distros
-
-        )
+            'Distribution %s in debian/changelog not listed in %s' %(
+            allowed_production_distros,
+            ))
         exit_error()
 
     DPUT_OPTIONS = DPUT_OPTIONS_DEFAULT