mirror of https://gitlab.com/bashrc2/epicyon
Dormant months can be set in config file
parent
e727cc4c22
commit
e1123279c8
|
@ -2037,6 +2037,11 @@ maxFeedItemSizeKb = \
|
||||||
if maxFeedItemSizeKb is not None:
|
if maxFeedItemSizeKb is not None:
|
||||||
args.maxFeedItemSizeKb = int(maxFeedItemSizeKb)
|
args.maxFeedItemSizeKb = int(maxFeedItemSizeKb)
|
||||||
|
|
||||||
|
dormantMonths = \
|
||||||
|
getConfigParam(baseDir, 'dormantMonths')
|
||||||
|
if dormantMonths is not None:
|
||||||
|
args.dormantMonths = int(dormantMonths)
|
||||||
|
|
||||||
allowNewsFollowers = \
|
allowNewsFollowers = \
|
||||||
getConfigParam(baseDir, 'allowNewsFollowers')
|
getConfigParam(baseDir, 'allowNewsFollowers')
|
||||||
if allowNewsFollowers is not None:
|
if allowNewsFollowers is not None:
|
||||||
|
|
Loading…
Reference in New Issue