remove debug statement
This commit is contained in:
parent
e6cd337232
commit
2b49918349
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -150,7 +150,7 @@ def handle_feed(api: WallabagAPI, site: Site, logger: logging.Logger, config: Co
|
|||
if api.check_exist(url):
|
||||
logger.info("already found in wallabag: " + article.title)
|
||||
continue
|
||||
if config.production or True:
|
||||
if config.production:
|
||||
print(published)
|
||||
api.add_entry(url=url, title=title, tags=taglist, published=published)
|
||||
else:
|
||||
|
|
Reference in a new issue