Skip to content

Commit c57d2ba

Browse files
authored
Merge pull request #832 from tisnik/lcore-973-fixed-typos
LCORE-973: fixed typos
2 parents b9c1061 + 0747c2f commit c57d2ba

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/quota/quota_limiter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def connect(self) -> None:
9696
self._initialize_tables()
9797
except Exception as e:
9898
self.connection.close()
99-
logger.exception("Error initializing Postgres database:\n%s", e)
99+
logger.exception("Error initializing quota limiter database:\n%s", e)
100100
raise
101101

102102
self.connection.autocommit = True

src/quota/user_quota_limiter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class UserQuotaLimiter(RevokableQuotaLimiter):
11-
"""Simple user quota limiter where each user have fixed quota."""
11+
"""Simple user quota limiter where each user has a fixed quota."""
1212

1313
def __init__(
1414
self,

0 commit comments

Comments
 (0)