Skip to content

Commit 924e5ba

Browse files
committed
nit: fix typos
1 parent c6598f4 commit 924e5ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Salted in that specific version is a relatively young package that will receive
7474
* `min_version`: a string with the number of the oldest supported version (like `'3.6'`).
7575
* `incompatible_versions`: a list of incompatible versions that will raise the `RuntimeError`exception if they try to run your package.
7676
* `max_tested_version`: the latest version of the interpreter you successfully tested your code with.
77-
* `nag_over_update` (optional): requires a dictionary with the three following keys:
77+
* `nag_over_update` (optional): requires a dictionary with the two following keys:
7878
* `nag_days_after_release`: wait this number of days (`int`) since the release before reminding users to check for an update.
7979
* `nag_in_hundred`: Whether to nag over a possible update is random, but this sets the probability in the form how many times (int) out of hundred starts the message is logged. Accordingly 100 means every time.
8080
* `language_messages` (optional): the language (`en` for English or `de` for German) of the messages logged by this. Defaults to English log messages.

compatibility/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def check_version_age(self,
271271
nag_in_hundred = int(nag_over_update['nag_in_hundred'])
272272
except ValueError as wrong_type:
273273
raise ValueError(
274-
_('Some key im nag_over_update has wrong type!')) from wrong_type
274+
_('Some key in nag_over_update has wrong type!')) from wrong_type
275275
if nag_days_after_release < 0:
276276
raise ValueError(_('nag_days_after_release must not be negative.'))
277277
if nag_in_hundred < 0 or nag_in_hundred > 100:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# No dependencies outside the Pyton standard library
1+
# No dependencies outside the Python standard library

0 commit comments

Comments
 (0)