forked from LBRYCommunity/lbry-sdk
appveyor is a line-length nazi
This commit is contained in:
parent
a6457d2c0a
commit
495a48add1
1 changed files with 3 additions and 1 deletions
|
@ -1682,7 +1682,9 @@ class Daemon(AuthJSONRPCServer):
|
|||
yield self.lbry_file_manager.toggle_lbry_file_running(lbry_file)
|
||||
msg = "Started seeding file" if status == 'start' else "Stopped seeding file"
|
||||
else:
|
||||
msg = "File was already being seeded" if status == 'start' else "File was already stopped"
|
||||
msg = (
|
||||
"File was already being seeded" if status == 'start' else "File was already stopped"
|
||||
)
|
||||
defer.returnValue(self._render_response(msg))
|
||||
|
||||
@AuthJSONRPCServer.auth_required
|
||||
|
|
Loading…
Add table
Reference in a new issue