remove str
This commit is contained in:
parent
d860c2a2b4
commit
03877f7ebd
1 changed files with 1 additions and 1 deletions
|
@ -2019,7 +2019,7 @@ class Daemon(jsonrpc.JSONRPC):
|
|||
if not file_path:
|
||||
return defer.fail(Exception("No file given to publish"))
|
||||
if not os.path.isfile(file_path):
|
||||
return defer.fail(Exception("Specified file for publish doesnt exist: %s" % str(file_path)))
|
||||
return defer.fail(Exception("Specified file for publish doesnt exist: %s" % file_path))
|
||||
|
||||
if not self.pending_claim_checker.running:
|
||||
self.pending_claim_checker.start(30)
|
||||
|
|
Loading…
Reference in a new issue