summaryrefslogtreecommitdiff
path: root/larch/journal.py
diff options
context:
space:
mode:
Diffstat (limited to 'larch/journal.py')
-rw-r--r--larch/journal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/larch/journal.py b/larch/journal.py
index 51d866d..4086ffa 100644
--- a/larch/journal.py
+++ b/larch/journal.py
@@ -146,8 +146,8 @@ class Journal(object):
if new in self.new_files:
return self.fs.cat(new)
elif deleted in self.deleted_files:
- raise OSError((errno.ENOENT, os.strerror(errno.ENOENT),
- filename))
+ raise OSError(
+ errno.ENOENT, os.strerror(errno.ENOENT), filename)
return self.fs.cat(filename)
def remove(self, filename):