From f1a7a4cf028386a2f64b4071ecb12ca70e53c461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Ram=C3=ADrez?= Date: Sat, 19 Jul 2014 19:54:34 -0600 Subject: [PATCH] Fix indentation error. --- secretary.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/secretary.py b/secretary.py index f84ed9d..2fa180a 100644 --- a/secretary.py +++ b/secretary.py @@ -140,11 +140,11 @@ class Renderer(object): zip_file = io.BytesIO() zipdoc = zipfile.ZipFile(zip_file, 'a') - for fname, content in files.items(): - if sys.version_info >= (2, 7): - zipdoc.writestr(fname, content, zipfile.ZIP_DEFLATED) - else: - zipdoc.writestr(fname, content) + for fname, content in files.items(): + if sys.version_info >= (2, 7): + zipdoc.writestr(fname, content, zipfile.ZIP_DEFLATED) + else: + zipdoc.writestr(fname, content) self.log.debug('Document packing completed')