Added default config for domain substitution

This commit is contained in:
JCF 2022-11-28 10:20:53 +00:00
parent b5262b7b3f
commit 03a514239a

View File

@ -445,6 +445,12 @@ def main(argv):
# 3. The value provided on the command line # 3. The value provided on the command line
# Default options # Default options
substitution = {
'twitter': [],
'youtube': [],
'reddit': [],
}
options = { options = {
'upload_videos': False, 'upload_videos': False,
'post_reply_to': False, 'post_reply_to': False,
@ -454,6 +460,7 @@ def main(argv):
'tweet_max_age': float(1), 'tweet_max_age': float(1),
'tweet_delay': float(0), 'tweet_delay': float(0),
'toot_cap': int(0), 'toot_cap': int(0),
'substitution': substitution,
} }
# Default toml # Default toml