summaryrefslogtreecommitdiffstats
path: root/Lib/mhlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/mhlib.py')
-rw-r--r--Lib/mhlib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/mhlib.py b/Lib/mhlib.py
index 1086121..1a90375 100644
--- a/Lib/mhlib.py
+++ b/Lib/mhlib.py
@@ -982,11 +982,11 @@ def test():
context = mh.getcontext()
f = mh.openfolder(context)
do('f.getcurrent()')
- for seq in ['first', 'last', 'cur', '.', 'prev', 'next',
+ for seq in ('first', 'last', 'cur', '.', 'prev', 'next',
'first:3', 'last:3', 'cur:3', 'cur:-3',
'prev:3', 'next:3',
'1:3', '1:-3', '100:3', '100:-3', '10000:3', '10000:-3',
- 'all']:
+ 'all'):
try:
do('f.parsesequence(%r)' % (seq,))
except Error, msg: