]> git.donarmstrong.com Git - dak.git/commitdiff
Whitespace changes only
authorJoerg Jaspert <joerg@debian.org>
Fri, 21 Mar 2008 14:24:55 +0000 (15:24 +0100)
committerJoerg Jaspert <joerg@debian.org>
Fri, 21 Mar 2008 14:24:55 +0000 (15:24 +0100)
config/debian/extensions.py

index 4340ca3be8477635c781b609331cb257933a85d2..31728d2a1a834eb55785dd703403dbc3b0ed9465 100644 (file)
@@ -32,7 +32,7 @@ def check_transition():
     except syck.error, msg:
         # This shouldn't happen, there is a wrapper to edit the file which
         # checks it, but we prefer to be safe than ending up rejecting
-       # everything.
+        # everything.
         daklib.utils.warn("Not checking transitions, the transitions file is broken: %s." % (msg))
         return
 
@@ -55,23 +55,23 @@ def check_transition():
             if sourcepkg in t['packages']:
                 # The source is affected, lets reject it.
 
-               rejectmsg = "%s: part of the %s transition.\n\n" % (
-                       sourcepkg, trans)
+                rejectmsg = "%s: part of the %s transition.\n\n" % (
+                    sourcepkg, trans)
 
-               if current is not None:
-                   currentlymsg = "at version %s" % (current)
-               else:
-                   currentlymsg = "not present in testing"
+                if current is not None:
+                    currentlymsg = "at version %s" % (current)
+                else:
+                    currentlymsg = "not present in testing"
 
-               rejectmsg += "Transition description: %s\n\n" % (t["reason"])
+                rejectmsg += "Transition description: %s\n\n" % (t["reason"])
 
-               rejectmsg += "\n".join(textwrap.wrap("""Your package
+                rejectmsg += "\n".join(textwrap.wrap("""Your package
 is part of a testing transition designed to get %s migrated (it is
 currently %s, we need version %s).  This transition is managed by the
 Release Team, and %s is the Release-Team member responsible for it.
 Please mail debian-release@lists.debian.org or contact %s directly if you
 need further assistance."""
-                       % (source, currentlymsg, expected,t["rm"], t["rm"])))
+                        % (source, currentlymsg, expected,t["rm"], t["rm"])))
 
                 reject(rejectmsg + "\n")
                 return