]> git.decadent.org.uk Git - dak.git/commitdiff
whitespace sanitizing
authorThomas Viehmann <tv@beamnet.de>
Tue, 7 Oct 2008 20:13:27 +0000 (20:13 +0000)
committerThomas Viehmann <tv@beamnet.de>
Tue, 7 Oct 2008 20:13:27 +0000 (20:13 +0000)
dak/show_deferred.py
daklib/database.py

index 81c117b148e64c3c9b9b1fee844188720c2a7d1e..e718f74ad8a8062995c8ff4e077d08fab97e807c 100755 (executable)
@@ -105,7 +105,7 @@ def table_row(changesname, delay, changed_by, closes):
 
     res = '<tr class="%s">'%((row_number%2) and 'odd' or 'even')
     res += (3*'<td valign="top">%s</td>')%tuple(map(html_escape,(changesname,delay,changed_by)))
-    res += ('<td valign="top">%s</td>' % 
+    res += ('<td valign="top">%s</td>' %
              ''.join(map(lambda close:  '<a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s">#%s</a><br>' % (close, close),closes)))
     res += '</tr>\n'
     row_number+=1
@@ -169,7 +169,7 @@ def usage (exit_code=0):
   -p, --html-path [path]    override output directory.
   """
     sys.exit(exit_code)
-   
+
 def init():
     global Cnf, Options, Upload, projectB
     Cnf = utils.get_conf()
@@ -190,7 +190,7 @@ def main():
     args = init()
     if len(args)!=1:
         usage(1)
-    
+
     filelist = []
     for r,d,f  in os.walk(args[0]):
         filelist += map (lambda x: os.path.join(r,x),
index 1d9f3c0bc9bf052f638dff9be43a08a451ae6904..5c7bd8387240b328073b6641817afaa21aa8c768 100755 (executable)
@@ -397,4 +397,3 @@ def get_suites(pkgname, src=False):
         sql = "select suite_name from binaries, bin_associations,suite where binaries.id=bin_associations.bin and  package='%s' and bin_associations.suite = suite.id"%pkgname
     q = projectB.query(sql)
     return map(lambda x: x[0], q.getresult())
-