summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-08-06 14:24:28 +0300
committerSergey Poznyakoff <gray@gnu.org>2021-08-06 14:24:28 +0300
commit90a9ed7108e45fa8c2d0300e1308a99171240255 (patch)
tree8b232f7118fbc3a49aba71d070abc3ef23c3de02
parentc785e3ad767b12a13ae75a3513ec88a4d1144210 (diff)
downloadwikitrans-master.tar.gz
wikitrans-master.tar.bz2
* wikitrans/wikimarkup.py (WikiMarkupParser.parse_ref): Fix copy-paste error (improper variable name).
-rw-r--r--wikitrans/wikimarkup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wikitrans/wikimarkup.py b/wikitrans/wikimarkup.py
index 1e2429f..6660808 100644
--- a/wikitrans/wikimarkup.py
+++ b/wikitrans/wikimarkup.py
@@ -659,7 +659,7 @@ class WikiMarkupParser(object):
self.dprint(80, "LEAVE parse_ref=None")
return None
elif tok.type == 'OTAG':
- list.append(self.parse_tag(tok))
+ seq.append(self.parse_tag(tok))
else:
seq.append(tok)

Return to:

Send suggestions and report system problems to the System administrator.