main
Bob Mottram 2020-10-26 21:33:40 +00:00
parent 292001479c
commit 51f2835872
1 changed files with 3 additions and 1 deletions

View File

@ -80,8 +80,10 @@ def setRssIconAtTop(baseDir: str, atTop: bool) -> bool:
configJson['rssIconAtTop'] = atTop configJson['rssIconAtTop'] = atTop
return saveJson(configJson, configFilename) return saveJson(configJson, configFilename)
def setPublishButtonAtTop(baseDir: str, atTop: bool) -> bool: def setPublishButtonAtTop(baseDir: str, atTop: bool) -> bool:
"""Whether to show the publish button above the title image in the newswire column """Whether to show the publish button above the title image
in the newswire column
""" """
configFilename = baseDir + '/config.json' configFilename = baseDir + '/config.json'
if not os.path.isfile(configFilename): if not os.path.isfile(configFilename):