aboutsummaryrefslogtreecommitdiff
path: root/source/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-07-22 08:33:54 +0200
committercedricbonhomme <devnull@localhost>2012-07-22 08:33:54 +0200
commit898fa07ded12cbc1342cbfabf9862fa40b8a3485 (patch)
tree0a1afc9ccbbcc841a59ceed6c2fe1a8edd285892 /source/utils.py
parentOnly use the URL of article for the QRCode. (diff)
downloadnewspipe-898fa07ded12cbc1342cbfabf9862fa40b8a3485.tar.gz
newspipe-898fa07ded12cbc1342cbfabf9862fa40b8a3485.tar.bz2
newspipe-898fa07ded12cbc1342cbfabf9862fa40b8a3485.zip
Updated header comments.
Diffstat (limited to 'source/utils.py')
-rwxr-xr-xsource/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/utils.py b/source/utils.py
index 7962c4df..7d1eaecc 100755
--- a/source/utils.py
+++ b/source/utils.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# pyAggr3g470r - A Web based news aggregator.
-# Copyright (C) 2010 Cédric Bonhomme - http://cedricbonhomme.org/
+# Copyright (C) 2010-2012 Cédric Bonhomme - http://cedricbonhomme.org/
#
# For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/
#
@@ -281,4 +281,4 @@ def search_feed(url):
if url not in feed_link['href']:
return urlparse.urljoin(url, feed_link['href'])
return feed_link['href']
- return None \ No newline at end of file
+ return None
bgstack15