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):
|
||||
def __init__(self, r):
|
||||
super().__init__(
|
||||
"Door Updating Error: {} {}\n{}"
|
||||
.format(r.status_code, r.reason, r.text))
|
||||
f"Door Updating Error: {r.status_code} {r.reason}\n{r.text}")
|
||||
|
||||
class DoorController():
|
||||
def __init__(self, ip, username, password, name="", access=""):
|
||||
|
Reference in New Issue
Block a user