summaryrefslogtreecommitdiff
path: root/hercules/code/server/evol/itemdb.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/code/server/evol/itemdb.py
parent9a351fb1abd5694bbbb7e38fcb64bb30b3fa74bb (diff)
downloadmessworld-tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.tar.gz
messworld-tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.tar.bz2
messworld-tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.tar.xz
messworld-tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.zip
updated all leftover scripts to py3HEADmaster
Diffstat (limited to 'hercules/code/server/evol/itemdb.py')
-rw-r--r--hercules/code/server/evol/itemdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/server/evol/itemdb.py b/hercules/code/server/evol/itemdb.py
index a60e57d..a7a54b0 100644
--- a/hercules/code/server/evol/itemdb.py
+++ b/hercules/code/server/evol/itemdb.py
@@ -18,7 +18,7 @@ def convertItemDb():
with open(srcFile, "r") as r:
with open(dstFile, "w") as w:
with open(constsFile, "a") as c:
- c.write("// items\n");
+ c.write("// items\n")
tpl = readFile("templates/item_db.tpl")
w.write(tpl)
for line in r: