Skip to content

Commit

Permalink
Fixes quotation marks in setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
Taapat committed Nov 11, 2023
1 parent 1960ef2 commit e85898f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def compile_translate():
os.makedirs(destdir)
dest = os.path.join(destdir, "FreeChannels.mo")
print("Language compile %s -> %s" % (src, dest))
if os.system("msgfmt "%s" -o "%s"" % (src, dest)) != 0:
if os.system("msgfmt '%s' -o '%s'" % (src, dest)) != 0:
raise RuntimeError("Failed to compile", src)


Expand Down

0 comments on commit e85898f

Please sign in to comment.