summaryrefslogtreecommitdiffstats
path: root/Demo/ibrowse/ifile.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/ibrowse/ifile.py')
-rwxr-xr-xDemo/ibrowse/ifile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/ibrowse/ifile.py b/Demo/ibrowse/ifile.py
index b8d59ee..7e66fcd 100755
--- a/Demo/ibrowse/ifile.py
+++ b/Demo/ibrowse/ifile.py
@@ -126,7 +126,7 @@ def analyze_node(text):
topic, ref = text[a1:b1], text[a2:b2]
if ref == ':':
ref = topic
- menu.append(topic, ref)
+ menu.append((topic, ref))
#
# Get the footnotes
#
@@ -140,7 +140,7 @@ def analyze_node(text):
topic, ref = text[a1:b1], text[a2:b2]
if ref == ':':
ref = topic
- footnotes.append(topic, ref)
+ footnotes.append((topic, ref))
#
return node, (prev, next, up), menu, footnotes
#