From: Calin Crisan Date: Sun, 6 Jul 2014 14:33:01 +0000 (+0300) Subject: minor typo X-Git-Url: http://www.vanbest.org/gitweb/?a=commitdiff_plain;h=d9e0c96fa57f3d3bba19c186323c1328d1215acc;p=motioneye-debian minor typo --- 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