Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrtfconvert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtfconvert.py b/rtfconvert.py
index 249dfcb..8b61cb1 100755
--- a/rtfconvert.py
+++ b/rtfconvert.py
@@ -45,7 +45,7 @@ def convert(file_path):
brace_count = brace_count + count_braces(line)
line = strip_tags(line)
if brace_count == 1 and line.find('{') < 0 and line.find('}') < 0:
- out.write(line.lstrip(' \t'))
+ out.write(line.lstrip(' '))
rtf_file.close()
out.close()
print "All done!"