diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2013-12-27 12:35:49 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2013-12-27 12:35:49 +0100 |
commit | ebd8899f8128e995f802ea6836770dda3d1f78fb (patch) | |
tree | 702422e45029766c332b9fcdb71e976aa74e018d /pyaggr3g470r | |
parent | Flash messsages. (diff) | |
download | newspipe-ebd8899f8128e995f802ea6836770dda3d1f78fb.tar.gz newspipe-ebd8899f8128e995f802ea6836770dda3d1f78fb.tar.bz2 newspipe-ebd8899f8128e995f802ea6836770dda3d1f78fb.zip |
Minor bugfix.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r-- | pyaggr3g470r/feedgetter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/feedgetter.py b/pyaggr3g470r/feedgetter.py index c548e024..91a0231b 100644 --- a/pyaggr3g470r/feedgetter.py +++ b/pyaggr3g470r/feedgetter.py @@ -105,7 +105,7 @@ class FeedGetter(object): except Timeout: pyaggr3g470r_log.warning("Timeout when getting the real URL of %s." % (article.link,)) except Exception as e: - pyaggr3g470r_log.warning("Unable to get the real URL of %s. Error: %s", (article.link, str(e))) + pyaggr3g470r_log.warning("Unable to get the real URL of %s. Error: %s" % (article.link, str(e))) description = "" article_title = "" |