]> git.pld-linux.org Git - projects/pld-builder.new.git/commitdiff
- fixes
authorMariusz Mazur <mmazur@pld-linux.org>
Sat, 26 Feb 2005 23:48:05 +0000 (23:48 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    PLD_Builder/report.py -> 1.31
    PLD_Builder/request.py -> 1.32

PLD_Builder/report.py
PLD_Builder/request.py

index b2c8373e3b5120b41a7d5ebd2081e0a5043dd526..11cf93201908edb8ebf32a43a1facea1f53e9944 100644 (file)
@@ -66,7 +66,7 @@ def send_report(r, is_src = False):
     if 'test-build' in r.flags:
         subject = 'TEST BUILD '
 
-    if 'upgrade' in r.flags and False in upgrades_status:
+    if not is_src and 'upgrade' in r.flags and False in upgrades_status:
         subject = 'UPGRADE FAILED '
 
     subject += ' '.join((s_failed, s_ok)).strip()
index 44e0ae385adb506d89f48d0681c2ae0be703f713..58189d57a36cc93177331e36c65f444a3e64f50b 100644 (file)
@@ -132,6 +132,7 @@ class Batch:
         self.gb_id = ""
         self.b_id = attr(e, "id")
         self.depends_on = string.split(attr(e, "depends-on"))
+        self.upgraded = False
         for c in e.childNodes:
             if is_blank(c): continue
             if c.nodeType != Element.ELEMENT_NODE:
This page took 0.140845 seconds and 4 git commands to generate.