deprecation warning for tweet parameter

This commit is contained in:
Carl Chenet 2017-08-01 17:20:52 +02:00
parent 65242b02cf
commit 239700d123

View file

@ -50,7 +50,6 @@ class ConfParse:
self.accept_bozo_exceptions = config.getboolean('feedparser', 'accept_bozo_exceptions') self.accept_bozo_exceptions = config.getboolean('feedparser', 'accept_bozo_exceptions')
else: else:
self.accept_bozo_exceptions = False self.accept_bozo_exceptions = False
########################### ###########################
# #
# the rss section # the rss section
@ -63,7 +62,9 @@ class ConfParse:
############################ ############################
oldconfoption = 'tweet' oldconfoption = 'tweet'
confoption = 'toot' confoption = 'toot'
# manage 'tweet' for compatibility reason with first versions
if config.has_option(section, oldconfoption): if config.has_option(section, oldconfoption):
logging.warn("Your configuration file uses a 'tweet' parameter instead of 'toot'. 'tweet' is deprecated and will be removed in Feed2toot 0.7")
self.tweetformat = config.get(section, oldconfoption) self.tweetformat = config.get(section, oldconfoption)
elif config.has_option(section, confoption): elif config.has_option(section, confoption):
self.tweetformat = config.get(section, confoption) self.tweetformat = config.get(section, confoption)