Fixed initial space bug
authorAaron Bentley <abentley@panoramicfeedback.com>
Mon, 6 Feb 2006 20:28:20 +0000 (15:28 -0500)
committerAaron Bentley <abentley@panoramicfeedback.com>
Mon, 6 Feb 2006 20:28:20 +0000 (15:28 -0500)
beweb/beweb/templates/edit_bug.kid

index 206f4ba02c275c560ae64d31f51dfff5aa2c13d9..774334e6868370adb66d685cd8bc57bd731932a8 100644 (file)
@@ -42,6 +42,7 @@ def to_unix(text):
          yield '\n'
 
 def soft_text(text):
+   first_space = False
    translations = {'\n': '<br />\n', '&': '&amp;', '\x3c': '&lt;', 
                    '\x3e': '&gt;'}
    for ch in to_unix(text):