summaryrefslogtreecommitdiff
path: root/hercules/convert_db.py
diff options
context:
space:
mode:
authorjak1 <jak1@themanaworld.org>2022-06-19 09:34:16 +0200
committerjak1 <jak1@themanaworld.org>2022-06-19 09:34:16 +0200
commit38fcd221d8fe03208abdafe0f01a6e54a601b71a (patch)
tree6a1ba5a5943b9dc0617e0046b39b82ba2284d53e /hercules/convert_db.py
parent9a351fb1abd5694bbbb7e38fcb64bb30b3fa74bb (diff)
downloadmessworld-tools-master.tar.gz
messworld-tools-master.tar.bz2
messworld-tools-master.tar.xz
messworld-tools-master.zip
updated all leftover scripts to py3HEADmaster
Diffstat (limited to 'hercules/convert_db.py')
-rwxr-xr-xhercules/convert_db.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/hercules/convert_db.py b/hercules/convert_db.py
index e10ad8a..0e361d9 100755
--- a/hercules/convert_db.py
+++ b/hercules/convert_db.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf8 -*-
#
# Copyright (C) 2015 Evol Online
@@ -10,8 +10,8 @@ from code.server.evol.main import dbEvolMain
from code.server.tmw.main import dbTmwMain
def showHelp():
- print "Usage: ./convert_db.py evol"
- print " ./convert_db.py tmw"
+ print("Usage: ./convert_db.py evol")
+ print(" ./convert_db.py tmw")
exit(1)
if len(sys.argv) != 2: