Skip to content

Commit

Permalink
Make build.py work with Python 3K-avoids "SyntaxError: invalid token"…
Browse files Browse the repository at this point in the history
… errors.

Not sure if it works with Python 2.x. Can't test it... :-(
  • Loading branch information
sole committed Sep 11, 2012
1 parent c1c52a4 commit 188b24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main(argv=None):
if args.minify is False:

shutil.copy(path, output)
os.chmod(output, 0664); # temp files would usually get 0600
os.chmod(output, 0o664); # temp files would usually get 0600

else:

Expand Down

0 comments on commit 188b24a

Please sign in to comment.