aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-10-25 17:16:15 +0200
committercedricbonhomme <devnull@localhost>2010-10-25 17:16:15 +0200
commit359204072ae147e55f9a30b377030259d6789881 (patch)
tree03780e8b3b644cd60e9eb8dc8ba508a1465f0d25 /utils.py
parentMinor bugfix. (diff)
downloadnewspipe-359204072ae147e55f9a30b377030259d6789881.tar.gz
newspipe-359204072ae147e55f9a30b377030259d6789881.tar.bz2
newspipe-359204072ae147e55f9a30b377030259d6789881.zip
Release 2.1. Better export of articles in HTML format. Lot of improvements. New wiki.
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils.py b/utils.py
index 8787ed64..30d79d7f 100755
--- a/utils.py
+++ b/utils.py
@@ -20,8 +20,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 1.0 $"
-__date__ = "$Date: 2010/08/25 $"
+__version__ = "$Revision: 1.1 $"
+__date__ = "$Date: 2010/10/25 $"
__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
__license__ = "GPLv3"
@@ -411,4 +411,4 @@ def load_feed():
LOCKER.release()
return (articles, feeds)
LOCKER.release()
- return (articles, feeds) \ No newline at end of file
+ return (articles, feeds)
bgstack15