Skip to content

Fix typos detected by Lintian during the packaging In Debian #1126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cassandra/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -2391,7 +2391,7 @@ def default_consistency_level(self, cl):
*Deprecated:* use execution profiles instead
"""
warn("Setting the consistency level at the session level will be removed in 4.0. Consider using "
"execution profiles and setting the desired consitency level to the EXEC_PROFILE_DEFAULT profile."
"execution profiles and setting the desired consistency level to the EXEC_PROFILE_DEFAULT profile."
, DeprecationWarning)
self._validate_set_legacy_config('default_consistency_level', cl)

Expand Down
2 changes: 1 addition & 1 deletion cassandra/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ class OrderedMap(Mapping):
'''
An ordered map that accepts non-hashable types for keys. It also maintains the
insertion order of items, behaving as OrderedDict in that regard. These maps
are constructed and read just as normal mapping types, exept that they may
are constructed and read just as normal mapping types, except that they may
contain arbitrary collections and other non-hashable items as keys::

>>> od = OrderedMap([({'one': 1, 'two': 2}, 'value'),
Expand Down