From d9e0c96fa57f3d3bba19c186323c1328d1215acc Mon Sep 17 00:00:00 2001 From: Calin Crisan <ccrisan@gmail.com> Date: Sun, 6 Jul 2014 17:33:01 +0300 Subject: [PATCH] minor typo --- src/update.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/update.py b/src/update.py index b557d42..e373906 100644 --- a/src/update.py +++ b/src/update.py @@ -117,7 +117,7 @@ def download(version): data = response.read() except Exception as e: - logging.error('could download update: %(msg)s' % {'msg': unicode(e)}) + logging.error('could not download update: %(msg)s' % {'msg': unicode(e)}) raise @@ -131,7 +131,7 @@ def download(version): f.write(data) except Exception as e: - logging.error('could download update: %(msg)s' % {'msg': unicode(e)}) + logging.error('could not download update: %(msg)s' % {'msg': unicode(e)}) raise @@ -237,4 +237,4 @@ def perform_update(version): except Exception as e: logging.error('could not perform update: %(msg)s' % {'msg': unicode(e)}, exc_info=True) - return False \ No newline at end of file + return False -- 2.39.5