Fix guild template scripts with Python 3

master^2
Kevin Zheng 2024-03-26 16:34:15 -07:00
parent 3d20a7dd92
commit a539289411
2 changed files with 3 additions and 3 deletions

2
templates/guild/convert.py 100644 → 100755
View File

@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# This script generates the various files for a guild, and installs them

View File

@ -14,5 +14,5 @@ a=t.read()
t.close()
b=a.split('\n')
for c in b:
print c + local_copy
print(c + local_copy)
os.system('./convert.py '+c + local_copy)