summaryrefslogtreecommitdiff
path: root/morphlib/app.py
diff options
context:
space:
mode:
authorJames Thomas <james.thomas@codethink.co.uk>2012-09-21 17:32:00 +0100
committerJames Thomas <james.thomas@codethink.co.uk>2012-09-21 17:32:00 +0100
commit91daacb277a237ecf8cef37b527b06e0c864c44d (patch)
treec2492a94f5ed780ac95abdf3dd441f0963c9c1ae /morphlib/app.py
parent806f50937fc4765abc91f0b7a31bd46780b76f3b (diff)
downloadmorph-91daacb277a237ecf8cef37b527b06e0c864c44d.tar.gz
Small coding standards/message fixes
Diffstat (limited to 'morphlib/app.py')
-rwxr-xr-xmorphlib/app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/app.py b/morphlib/app.py
index e1126fa5..36783fd4 100755
--- a/morphlib/app.py
+++ b/morphlib/app.py
@@ -170,11 +170,11 @@ class Morph(cliapp.Application):
try:
file_mtime = os.path.getmtime(__file__)
except OSError as e:
- raise morphlib.Error('%s %s' % (e.strerror,e.filename))
+ raise morphlib.Error('%s %s' % (e.strerror, e.filename))
sys_time = time.time()
if file_mtime > sys_time:
- raise morphlib.Error('mtime for %s is in the future, please set'
+ raise morphlib.Error('mtime for %s is in the future, please set '
'your system clock' % __file__)
def process_args(self, args):