switch to os.path.exists(), prep for chunked is own subdir

This commit is contained in:
Martin A. Brown 2016-03-04 17:07:36 -08:00
parent 1dbc0e5f8b
commit 50af88ebde
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class OutputNamingConvention(object):
for prop in self.expected:
name = getattr(self, prop, None)
assert name is not None
present.append(os.path.isfile(name))
present.append(os.path.exists(name))
return all(present)
@property