Fix a missing parameter

This commit is contained in:
Gina Häußge 2016-08-31 11:11:47 +02:00
parent c32d9a33ee
commit 5c9ed254ff

View file

@ -65,7 +65,7 @@ def _create_lastmodified(path, recursive):
def _create_etag(path, recursive, lm=None):
if lm is None:
lm = _create_lastmodified(path)
lm = _create_lastmodified(path, recursive)
if lm is None:
return None