Skip to content

Commit 90d33f3

Browse files
committed
fix for python 3.6
1 parent 6735a61 commit 90d33f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aprscot/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def cli():
7373
if sys.version_info[:2] >= (3, 7):
7474
asyncio.run(main(config), debug=config["aprscot"].getboolean("DEBUG"))
7575
else:
76-
loop = get_running_loop()
76+
loop = asyncio.get_event_loop()
7777
try:
7878
loop.run_until_complete(main(config))
7979
finally:

0 commit comments

Comments
 (0)