summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2008-11-29 15:41:17 +0100
committerWojciech Polak <polak@gnu.org>2008-11-29 15:41:17 +0100
commiteb37b0862bf3940dad577d2092af426665558104 (patch)
treedf0fff2ce11aa4ad10c867f7db2798ab55b02664
parent566d990c8507622daced29cf10cb2e1e30aad5bd (diff)
downloadwikitrans-eb37b0862bf3940dad577d2092af426665558104.tar.gz
wikitrans-eb37b0862bf3940dad577d2092af426665558104.tar.bz2
Bugfix
-rw-r--r--wikimarkup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wikimarkup.py b/wikimarkup.py
index 429a02a..4fd4e44 100644
--- a/wikimarkup.py
+++ b/wikimarkup.py
@@ -394,7 +394,7 @@ class WikiMarkup (BaseWikiMarkup):
if self.file:
return self.file.readline()
elif self.text:
- return self.text.pop(0)
+ return self.text.pop(0) + '\n'
else:
return None

Return to:

Send suggestions and report system problems to the System administrator.