about summary refs log tree commit diff homepage
path: root/brutalmaze/maze.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-02-27 20:39:28 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-02-27 20:43:25 +0700
commit0ba2f33bda16e42016e77abf5a91d9316c0cd39c (patch)
treee03aa16079529ad6258ee1bc645d01202704439d /brutalmaze/maze.py
parentb4c8f327001451029a1c143321a150a2a42037a6 (diff)
downloadbrutalmaze-0ba2f33bda16e42016e77abf5a91d9316c0cd39c.tar.gz
Relicense to AGPLv3+ and update copyright notices 0.5.4
Diffstat (limited to 'brutalmaze/maze.py')
-rw-r--r--brutalmaze/maze.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/brutalmaze/maze.py b/brutalmaze/maze.py
index 387c7c6..70577ae 100644
--- a/brutalmaze/maze.py
+++ b/brutalmaze/maze.py
@@ -1,23 +1,23 @@
 # -*- coding: utf-8 -*-
 # maze.py - module for the maze class
-# This file is part of brutalmaze
+# Copyright (C) 2017, 2018  Nguyễn Gia Phong
 #
-# brutalmaze 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.
+# This file is part of Brutal Maze.
 #
-# brutalmaze is distributed in the hope that it will be useful,
+# Brutal Maze 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.
+#
+# Brutal Maze 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 brutalmaze.  If not, see <http://www.gnu.org/licenses/>.
+# GNU Affero General Public License for more details.
 #
-# Copyright (C) 2017 Nguyễn Gia Phong
+# You should have received a copy of the GNU Affero General Public License
+# along with Brutal Maze.  If not, see <https://www.gnu.org/licenses/>.
 
-__doc__ = 'brutalmaze module for the maze class'
+__doc__ = 'Brutal Maze module for the maze class'
 
 from collections import deque
 from math import pi, log