From 55c2d1f6193375d2c905653a3471b9a812fbeea3 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 12 Jan 2015 19:41:48 +0100 Subject: [PATCH] Fix style issue --- vdirsyncer/storage/filesystem.py | 1 - 1 file changed, 1 deletion(-) diff --git a/vdirsyncer/storage/filesystem.py b/vdirsyncer/storage/filesystem.py index 4f5ca01..8d0a616 100644 --- a/vdirsyncer/storage/filesystem.py +++ b/vdirsyncer/storage/filesystem.py @@ -105,7 +105,6 @@ class FilesystemStorage(Storage): if not isinstance(item.raw, text_type): raise TypeError('item.raw must be a unicode string.') - try: with atomic_write(fpath, binary=True, overwrite=False) as f: f.write(item.raw.encode(self.encoding))