Skip to content

Commit

Permalink
Fix main get
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus committed Apr 20, 2021
1 parent 58e5c2c commit de3642a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions haphilipsjs/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,11 @@ async def main():
print(f"Password: {res[1]}")

elif args.command == "get":
res = await tv._getReq(args.path)
res = await tv.getReq(args.path)
print(res)

elif args.command == "post":
res = await tv._postReq(args.path, literal_eval(args.data))
res = await tv.postReq(args.path, literal_eval(args.data))
print(res)

elif args.command == "markdown":
Expand Down

0 comments on commit de3642a

Please sign in to comment.