diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-05-21 23:42:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-05-21 23:42:32 -0300 |
commit | 112c5d8a93181defbfd558137a802fc0ac52c839 (patch) | |
tree | 85753cdc091b6003d8d78327710972f72a6dac85 /misc | |
parent | 18f290277e0efe329c08872dd7b08645c2eca8ec (diff) | |
download | tools-112c5d8a93181defbfd558137a802fc0ac52c839.tar.gz tools-112c5d8a93181defbfd558137a802fc0ac52c839.tar.bz2 tools-112c5d8a93181defbfd558137a802fc0ac52c839.tar.xz tools-112c5d8a93181defbfd558137a802fc0ac52c839.zip |
Fix a typo
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/maze.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/maze.py b/misc/maze.py index b1d47f3..68de7b7 100755 --- a/misc/maze.py +++ b/misc/maze.py @@ -116,7 +116,7 @@ def BuildLayer(LayerName, w, h, LayerData, invisible=False): </layer>""" % (LayerName, w, h, inv, LayerData)) # Begin -print "Begin!" +print("Begin!") MazeID=0 while MazeID < MaxMazes: |