view feedupdate.py @ 227:6ce0e081094a

fix the column title display
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 May 2014 02:47:40 +0200
parents f07cf25224a4
children
line wrap: on
line source

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import BackendFactory
import logging

if __name__ == "__main__":
    logFormat = '%(asctime)s ' + logging.BASIC_FORMAT
    logging.basicConfig(format=logFormat, level=logging.DEBUG)
    backend = BackendFactory.createBackend()
    backend.updateAllFeeds()
    backend.expireFeedEntries()
    backend.dispose()