Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
romanc committed Dec 18, 2024
1 parent 1c91113 commit 388e094
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/zh_trashbot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
WhatsNew = {
"1.2.2": [
"Software & project maintenance",
"Fixed typos",
],
"1.2.1": [
"Update to current version of openERZ API",
Expand Down Expand Up @@ -183,7 +184,7 @@ def queryCollectionAPI(choice, user_data):
notFound = "I couldn't find any %s in your area %s "\
"(zip code = %s).\n\n"\
"Please note: Especially in December you might see no this "\
"message if the new year's data isn't publically available "\
"message if the new year's data isn't publicly available "\
"yet.\n\n"\
"If you think your zip code is wrong, use /start to "\
"configure a new one." % (E_cry, name[query.data], zip)
Expand Down Expand Up @@ -262,7 +263,7 @@ def handleQueryLimit(update, context):
context.user_data["queryLimit"] = query.data
reply = ""
if query.data == "none":
reply = "Removed query limit - showing all remaining colletion dates "\
reply = "Removed query limit - showing all remaining collection dates "\
"for each query in the future."
else:
reply = "Query limit is set to %s now." % query.data
Expand Down Expand Up @@ -373,7 +374,7 @@ def trashbot(token):


if __name__ == '__main__':
logger.info("Parsing configfile")
logger.info("Parsing configuration file")
config = configparser.ConfigParser()
config.read("config.ini")

Expand Down

0 comments on commit 388e094

Please sign in to comment.