Revert "Don't use format strings, for compatability with Python 3.5 :("
This reverts commit 96c34c95f3
.
This commit is contained in:
parent
d867cacfef
commit
df92332c69
@ -16,8 +16,7 @@ fieldnames = "CardNumber,CardFormat,PinRequired,PinCode,ExtendedAccess,ExpiryDat
|
|||||||
class RemoteError(Exception):
|
class RemoteError(Exception):
|
||||||
def __init__(self, r):
|
def __init__(self, r):
|
||||||
super().__init__(
|
super().__init__(
|
||||||
"Door Updating Error: {} {}\n{}"
|
f"Door Updating Error: {r.status_code} {r.reason}\n{r.text}")
|
||||||
.format(r.status_code, r.reason, r.text))
|
|
||||||
|
|
||||||
class DoorController():
|
class DoorController():
|
||||||
def __init__(self, ip, username, password, name="", access=""):
|
def __init__(self, ip, username, password, name="", access=""):
|
||||||
|
Reference in New Issue
Block a user