From 5a26721905516630e1ebb6e685380401adb34fbd Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 19 Oct 2014 15:49:58 +0200 Subject: [PATCH] Fix typo --- vdirsyncer/storage/singlefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdirsyncer/storage/singlefile.py b/vdirsyncer/storage/singlefile.py index fad638f..41ab3dd 100644 --- a/vdirsyncer/storage/singlefile.py +++ b/vdirsyncer/storage/singlefile.py @@ -159,7 +159,7 @@ class SingleFileStorage(Storage): if self._last_mtime is not None and \ self._last_mtime != os.path.getmtime(self.path): raise exceptions.PreconditionFailed( - 'Some other program modified the file {r!}'.format(path)) + 'Some other program modified the file {r!}'.format(self.path)) text = join_collection( (item.raw for item, etag in itervalues(self._items)), )