Catch log.start() UserWarning
* May revert this down the road
This commit is contained in:
parent
c9d35a0e2f
commit
77238ad41a
1 changed files with 4 additions and 1 deletions
|
|
@ -30,7 +30,10 @@ if sys.version_info < (3, 7):
|
|||
))
|
||||
|
||||
# Init
|
||||
log.start()
|
||||
try:
|
||||
log.start()
|
||||
except UserWarning as err:
|
||||
std.print_warning(err)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
Loading…
Reference in a new issue