Removed debug print statements and added a note about token expiry
parent
37169128a0
commit
48f94ad8ad
|
@ -47,7 +47,6 @@ class Application:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("Something went wrong:")
|
print("Something went wrong:")
|
||||||
print(e)
|
print(e)
|
||||||
print(data)
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def get_auth_token(self, token):
|
def get_auth_token(self, token):
|
||||||
|
@ -82,7 +81,7 @@ class Application:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("Something went wrong:")
|
print("Something went wrong:")
|
||||||
print(e)
|
print(e)
|
||||||
print(data)
|
print("Note that this may be because your OOB token has expired")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def unique_at_file(self):
|
def unique_at_file(self):
|
||||||
|
|
Loading…
Reference in New Issue