diff options
author | jak1 <jak1@themanaworld.org> | 2022-06-19 09:34:16 +0200 |
---|---|---|
committer | jak1 <jak1@themanaworld.org> | 2022-06-19 09:34:16 +0200 |
commit | 38fcd221d8fe03208abdafe0f01a6e54a601b71a (patch) | |
tree | 6a1ba5a5943b9dc0617e0046b39b82ba2284d53e /hercules/code/server/accreg.py | |
parent | 9a351fb1abd5694bbbb7e38fcb64bb30b3fa74bb (diff) | |
download | tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.tar.gz tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.tar.bz2 tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.tar.xz tools-38fcd221d8fe03208abdafe0f01a6e54a601b71a.zip |
updated all leftover scripts to py3
Diffstat (limited to 'hercules/code/server/accreg.py')
-rw-r--r-- | hercules/code/server/accreg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/server/accreg.py b/hercules/code/server/accreg.py index b69910f..2319780 100644 --- a/hercules/code/server/accreg.py +++ b/hercules/code/server/accreg.py @@ -26,7 +26,7 @@ def convertAccReg(): line = stripNewLine(line) rows = fieldsSplit.split(line) if len(rows) != 2: - print "wrong accreg.txt line: " + line + print("wrong accreg.txt line: " + line) continue accountId = rows[0] |