Fix invalid update logging
This commit is contained in:
parent
67212ee29e
commit
23db93d20f
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class FileRequest(object):
|
|||
try:
|
||||
valid = site.content_manager.verifyFile(inner_path, content)
|
||||
except Exception, err:
|
||||
self.log.debug("Update for %s is invalid" % (inner_path, err))
|
||||
self.log.debug("Update for %s is invalid: %s" % (inner_path, err))
|
||||
valid = False
|
||||
|
||||
if valid is True: # Valid and changed
|
||||
|
|
Loading…
Reference in a new issue