diff options
Diffstat (limited to 'hercules/convert_tmx_to_mapcache.py')
-rwxr-xr-x | hercules/convert_tmx_to_mapcache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hercules/convert_tmx_to_mapcache.py b/hercules/convert_tmx_to_mapcache.py index 62d0d18..0f69634 100755 --- a/hercules/convert_tmx_to_mapcache.py +++ b/hercules/convert_tmx_to_mapcache.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf8 -*- # # Copyright (C) 2014 Evol Online @@ -6,4 +6,4 @@ from code.clienttoserver.maps import recreateMapCache -recreateMapCache(); +recreateMapCache() |