Fix a missing parameter
This commit is contained in:
parent
c32d9a33ee
commit
5c9ed254ff
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue