We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.tmp
1 parent 804b9f0 commit 439e63fCopy full SHA for 439e63f
vdirsyncer/storage/filesystem.py
@@ -80,7 +80,8 @@ def _get_href(self, ident):
80
def list(self):
81
for fname in os.listdir(self.path):
82
fpath = os.path.join(self.path, fname)
83
- if os.path.isfile(fpath) and fname.endswith(self.fileext):
+ if os.path.isfile(fpath) and fname.endswith(self.fileext) and (
84
+ not fname.endswith('.tmp')):
85
yield fname, get_etag_from_file(fpath)
86
87
def get(self, href):
0 commit comments