From b56d7fa71e73f4b136b6cb45dbe198920c4e7ec6 Mon Sep 17 00:00:00 2001 From: rugk Date: Tue, 7 Apr 2020 20:15:56 +0200 Subject: [PATCH] Fix wrong config strings in example file This fixes the errors: > module 'config' has no attribute 'keep_pinned' and: > module 'config' has no attribute 'keep_pinned' --- example.config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example.config.py b/example.config.py index 0484b85..5eaff47 100644 --- a/example.config.py +++ b/example.config.py @@ -1,7 +1,7 @@ access_token = 'YOUR_ACCESS_TOKEN_HERE' base_url = 'https://ausglam.space' days_to_keep = 30 -save_pinned = True -toots_to_save = [] +keep_pinned = True +toots_to_keep = [] hashtags_to_keep = {'introduction', 'announcement'} # comma separated Set as strings, e.g. 'introduction' -visibility_to_keep = ['private', 'unlisted'] # options are: 'public', 'unlisted', 'private', 'direct' \ No newline at end of file +visibility_to_keep = ['private', 'unlisted'] # options are: 'public', 'unlisted', 'private', 'direct'