aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-01-02 00:27:12 +0100
committercedricbonhomme <devnull@localhost>2011-01-02 00:27:12 +0100
commita2dc9519160c77881c6c4a751a7ceeefc24e9ce4 (patch)
tree4a9a1808094ad75fd830808655da46c27ac62491
parentMinor changes (html ouput). (diff)
downloadnewspipe-a2dc9519160c77881c6c4a751a7ceeefc24e9ce4.tar.gz
newspipe-a2dc9519160c77881c6c4a751a7ceeefc24e9ce4.tar.bz2
newspipe-a2dc9519160c77881c6c4a751a7ceeefc24e9ce4.zip
Removed year of copyright.
-rw-r--r--articles.py2
-rwxr-xr-xfeedgetter.py2
-rwxr-xr-xpyAggr3g470r.py2
-rwxr-xr-xutils.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/articles.py b/articles.py
index ec9c451d..7d983dac 100644
--- a/articles.py
+++ b/articles.py
@@ -22,7 +22,7 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 0.1 $"
__date__ = "$Date: 2010/12/02 $"
-__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
from collections import OrderedDict
diff --git a/feedgetter.py b/feedgetter.py
index 69cfe107..aa65df1f 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -22,7 +22,7 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 1.0 $"
__date__ = "$Date: 2010/09/02 $"
-__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
import sqlite3
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index a9887436..51b06aff 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -22,7 +22,7 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 2.4 $"
__date__ = "$Date: 2010/12/07 $"
-__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
import os
diff --git a/utils.py b/utils.py
index 4832914c..67849e0a 100755
--- a/utils.py
+++ b/utils.py
@@ -22,7 +22,7 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 1.1 $"
__date__ = "$Date: 2010/12/07 $"
-__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
import re
bgstack15