another post problem

This commit is contained in:
Ed Summers
2018-06-09 14:06:57 -04:00
parent 814c10c803
commit 96d4d104d8
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ def main():
for feed in config['feeds']:
for entry in get_feed(feed['url'], config['updated']):
masto.status_post(feed['template'].format(entry))
masto.status_post(feed['template'].format(**entry))
save_config(config, config_file)

View File

@ -5,7 +5,7 @@ with open("README.md") as f:
setup(
name='feediverse',
version='0.0.7',
version='0.0.8',
python_requires='>=2.7',
url='https://github.com/edsu/feediverse',
author='Ed Summers',