Merge pull request #62 from scoobybejesus/patch-8

Two ways to make python3 happy
This commit is contained in:
jw 2021-07-11 11:47:12 -04:00 committed by GitHub
commit 6bc3640c47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ def fork(bot, trigger):
try: try:
r=requests.get(networkurl) r=requests.get(networkurl)
j=r.json() j=r.json()
except Exception,e: except Exception as e:
pass pass
try: try:
height=j["height"] height=j["height"]
@ -37,7 +37,7 @@ def network(bot, trigger):
try: try:
r=requests.get(networkurl) r=requests.get(networkurl)
j=r.json() j=r.json()
except Exception,e: except:
pass pass
try: try:
height=j["height"] height=j["height"]