Skip to content

Commit

Permalink
remove deprecate warning for default command
Browse files Browse the repository at this point in the history
We removed the default command several years ago, 99% of users should
have migrated by now.
  • Loading branch information
geier committed Oct 29, 2023
1 parent 75fb279 commit a28ab3a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions khal/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,6 @@ def get_config(
section = sectionize(section)
logger.warning(
f'unknown key or subsection "{value}" in section "{section}"')

deprecated = [{'value': 'default_command', 'section': 'default'}]
for d in deprecated:
if (value == d['value']) and (section == d['section']):
logger.warning(f'Key "{value}" in section "{section}" was '
'deprecated. See the FAQ to find out when and why!')
return user_config


Expand Down

0 comments on commit a28ab3a

Please sign in to comment.