aboutsummaryrefslogtreecommitdiff
path: root/radicale_web/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'radicale_web/__init__.py')
-rw-r--r--radicale_web/__init__.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/radicale_web/__init__.py b/radicale_web/__init__.py
index 591ddb3..7a69abd 100644
--- a/radicale_web/__init__.py
+++ b/radicale_web/__init__.py
@@ -1,18 +1,18 @@
-# This file is part of Radicale Web.
-# Copyright © 2017 Unrud <unrud@openaliasbox.org>
+# RadicaleWeb web interface for Radicale.
+# Copyright (C) 2017 Unrud <unrud@openaliasbox.org>
#
-# Radicale Web is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
+# 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 3 of the License, or
+# (at your option) any later version.
#
-# Radicale Web is distributed in the hope that it will be useful,
+# 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 Affero General Public License for more details.
+# GNU General Public License for more details.
#
-# You should have received a copy of the GNU Affero General Public License
-# along with Radicale Web. If not, see <http://www.gnu.org/licenses/>.
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import pkg_resources
bgstack15