mirror of
https://github.com/onionshare/onionshare.git
synced 2025-07-30 18:09:01 -04:00
No longer treating shutdown_timeout as a float, but an int of seconds
This commit is contained in:
parent
d6324080ac
commit
ee9dfb7a8b
3 changed files with 4 additions and 4 deletions
|
@ -79,7 +79,7 @@ def main():
|
|||
|
||||
local_only = bool(args.local_only)
|
||||
stay_open = bool(args.stay_open)
|
||||
shutdown_timeout = float(args.shutdown_timeout)
|
||||
shutdown_timeout = int(args.shutdown_timeout)
|
||||
debug = bool(args.debug)
|
||||
|
||||
# Debug mode?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue