Skip to content

Commit 5bb086a

Browse files
authored
Merge pull request #64
Fix TypeError issue on line 411, lingotojson.py
2 parents 7ba28b3 + cfafc39 commit 5bb086a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lingotojson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def renderlevelProccess(data):
408408
os.system(data)
409409
# os.system(f"{application_path}/drizzle/Drizzle.ConsoleApp{'' if islinux else '.exe'} render {fl}")
410410
if not islinux:
411-
os.system("start " + resolvepath(path2renderedlevels))
411+
os.system("start " + str(resolvepath(path2renderedlevels)))
412412

413413

414414
def getcolors():

0 commit comments

Comments
 (0)