summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index 1bb7d19f..5d7828c3 100644
--- a/igor.py
+++ b/igor.py
@@ -218,7 +218,7 @@ def do_zip_mods():
(u'cp1252', u'“hi”'),
]
for encoding, text in details:
- filename = 'encoded_{0}.py'.format(encoding)
+ filename = 'encoded_{}.py'.format(encoding)
ords = [ord(c) for c in text]
source_text = source.format(encoding=encoding, text=text, ords=ords)
zf.writestr(filename, source_text.encode(encoding))