mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Use "could not" consistently, instead of "couldn't" which was used in some places.
This commit is contained in:
committed by
Dave Page
parent
f2fc1ceba8
commit
c34f5fd2d4
@@ -73,7 +73,7 @@ class _Preference(object):
|
||||
).first()
|
||||
|
||||
if res is None:
|
||||
# Couldn't find in the configuration table, we will create new
|
||||
# Could not find in the configuration table, we will create new
|
||||
# entry for it.
|
||||
res = PrefTable(name=self.name, cid=cid)
|
||||
db.session.add(res)
|
||||
@@ -98,7 +98,7 @@ class _Preference(object):
|
||||
pid=self.pid
|
||||
).filter_by(uid=current_user.id).first()
|
||||
|
||||
# Couldn't find any preference for this user, return default value.
|
||||
# Could not find any preference for this user, return default value.
|
||||
if res is None:
|
||||
return self.default
|
||||
|
||||
|
||||
Reference in New Issue
Block a user