Pass loglevel as named arg to pikerd

feed_fixes
Tyler Goodlet 2021-04-15 11:20:30 -04:00
parent 7d6bc4d856
commit 8a140b5ae8
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def pikerd(loglevel, host, tl, pdb):
)) ))
async def main(): async def main():
async with open_pikerd(loglevel, debug_mode=pdb): async with open_pikerd(loglevel=loglevel, debug_mode=pdb):
await trio.sleep_forever() await trio.sleep_forever()
trio.run(main) trio.run(main)