aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
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