Skip to content

Commit

Permalink
Fix str error with no-browser mode (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mulan-94 authored Jul 14, 2021
1 parent d8c5e02 commit 8655785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run-radiopadre
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ import signal
signal.signal(signal.SIGHUP, _handle_hup)

# work out browser
if config.BROWSER.upper() in ("NONE", "FALSE", "0"):
if str(config.BROWSER).upper() in ("NONE", "FALSE", "0"):
config.BROWSER = None


Expand Down

0 comments on commit 8655785

Please sign in to comment.