[Collab-qa-commits] r1696 - udd/udd

Lucas Nussbaum lucas at alioth.debian.org
Wed Feb 24 09:01:27 UTC 2010


Author: lucas
Date: 2010-02-24 09:01:23 +0000 (Wed, 24 Feb 2010)
New Revision: 1696

Modified:
   udd/udd/upload_history_gatherer.py
Log:
fix parsing of long lines. patch from Stuart Prescott

Modified: udd/udd/upload_history_gatherer.py
===================================================================
--- udd/udd/upload_history_gatherer.py	2010-02-23 18:45:19 UTC (rev 1695)
+++ udd/udd/upload_history_gatherer.py	2010-02-24 09:01:23 UTC (rev 1696)
@@ -67,7 +67,7 @@
 
       for line in f:
         line_count += 1
-        line = line.strip()
+        line = line.lstrip()
         # Stupid multi-line maintainer fields *grml*
         if line == '':
           current['Changed-By_name'], current['Changed-By_email'] = email.Utils.parseaddr(current['Changed-By'])




More information about the Collab-qa-commits mailing list