summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-10-25 13:00:40 +0200
committerAurélien Bompard <aurelien@bompard.org>2012-10-25 13:00:40 +0200
commit479c57f4a6531118f09daba35224bbcadda49013 (patch)
tree8023e398214c920014f8c71e0570294e9a6a1457
parentdf45c3ed3f6c5e2f15e2aa740c9961f5e462dd55 (diff)
downloadkittystore-479c57f4a6531118f09daba35224bbcadda49013.tar.gz
kittystore-479c57f4a6531118f09daba35224bbcadda49013.tar.xz
kittystore-479c57f4a6531118f09daba35224bbcadda49013.zip
Fix a few licenses
-rw-r--r--kittystore/import.py21
-rw-r--r--kittystore/scrub.py2
-rw-r--r--kittystore/utils.py25
3 files changed, 39 insertions, 9 deletions
diff --git a/kittystore/import.py b/kittystore/import.py
index af970e4..81767d4 100644
--- a/kittystore/import.py
+++ b/kittystore/import.py
@@ -1,5 +1,26 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (C) 2011-2012 by the Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
+
"""
Import the content of a mbox file into the database.
+
+Author: Aurelien Bompard <abompard@fedoraproject.org>
"""
import datetime
diff --git a/kittystore/scrub.py b/kittystore/scrub.py
index b009c0b..627668c 100644
--- a/kittystore/scrub.py
+++ b/kittystore/scrub.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2011 by the Free Software Foundation, Inc.
+# Copyright (C) 2011-2012 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/kittystore/utils.py b/kittystore/utils.py
index 4146694..1cbe8db 100644
--- a/kittystore/utils.py
+++ b/kittystore/utils.py
@@ -1,17 +1,26 @@
# -*- coding: utf-8 -*-
+# Copyright (C) 2011-2012 by the Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
+
"""
Misc helper functions.
-Copyright (C) 2012 Aurelien Bompard
Author: Aurelien Bompard <abompard@fedoraproject.org>
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or (at
-your option) any later version.
-See http://www.gnu.org/copyleft/gpl.html for the full text of the
-license.
"""
import email.utils