changeset 369:c18bd0042eda

Empty workpackage defaults to "-" instead of "----" The length of workpackage names is varying, so default to a single easily replaceable character.
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 03 Mar 2014 15:49:22 +0100
parents a91cd3a13637
children f4dcfbede99b
files getan/project.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/getan/project.py	Mon Mar 03 15:47:13 2014 +0100
+++ b/getan/project.py	Mon Mar 03 15:49:22 2014 +0100
@@ -102,7 +102,7 @@
             self.workpackage = m.group(1)
             c = c[m.end():].strip()
         else:
-            self.workpackage = "----"
+            self.workpackage = "-"
         c = c.replace('\x1b', '')
         self.comment = c
 
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)