Use "could not" consistently, instead of "couldn't" which was used in some places.

This commit is contained in:
Jonas Thelemann
2017-03-07 10:29:54 +00:00
committed by Dave Page
parent f2fc1ceba8
commit c34f5fd2d4
35 changed files with 54 additions and 54 deletions

View File

@@ -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