]> git.pld-linux.org Git - projects/pld-builder.new.git/commitdiff
Fixes.
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 27 Feb 2009 17:48:52 +0000 (17:48 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    PLD_Builder/build.py -> 1.11
    PLD_Builder/request.py -> 1.54

PLD_Builder/build.py
PLD_Builder/request.py

index 4b18b009b26bd48fcd51235a307b4d582b135a01..5a80b829452644a277033f9df93f3e948668293d 100644 (file)
@@ -83,11 +83,11 @@ def build_all(r, build_fnc):
             batch.requester_email=r.requester_email
             batch.build_failed = build_fnc(r, batch)
             if batch.build_failed:
-                log.notice("building %s FAILED (%s)" % batch.spec, batch.build_failed)
+                log.notice("building %s FAILED (%s)" % (batch.spec, batch.build_failed))
                 notify.add_batch(batch, batch.build_failed)
             else:
                 r.some_ok = 1
-                log.notice("building %s OK (%s)" % batch.spec, batch.build_failed)
+                log.notice("building %s OK (%s)" % (batch.spec, batch.build_failed))
                 notify.add_batch(batch, batch.build_failed)
             batch.build_time = stopwatch.stop()
             report.add_pld_builder_info(batch)
index 8f06dde675412a6ffa5dd93805a782bd0d2151cf..b384daa5b82f1600508f3ec5ff94fa4e1ba4da99 100644 (file)
@@ -211,8 +211,8 @@ class Batch:
                 c = "black"
             link_pre = ""
             link_post = ""
-            if (s in ["OK", "FAIL", "FAIL_SRPM_INSTALL", "FAIL_DEPS_UNINSTALL", "FAIL_DEPS_INSTALL", 
-                    "FAIL_NOFILES", "SKIP", "UNSUPP"] and len(self.spec) > 5:
+            if s in ["OK", "FAIL", "FAIL_SRPM_INSTALL", "FAIL_DEPS_UNINSTALL", "FAIL_DEPS_INSTALL", "FAIL_NOFILES",
+                    "SKIP", "UNSUPP"] and len(self.spec) > 5:
                 if self.is_command():
                     bl_name = "command"
                 else:
This page took 0.084843 seconds and 4 git commands to generate.