Skip to content

Commit

Permalink
Fix a typo (closes #20)
Browse files Browse the repository at this point in the history
  • Loading branch information
certik committed Dec 5, 2011
1 parent 4dc4127 commit 5e49eb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyjs.py
Expand Up @@ -31,7 +31,8 @@ def main():


if options.include_builtins: if options.include_builtins:
if os.path.dirname(__file__): if os.path.dirname(__file__):
builtins = open(os.path.join(os.path.dirname(__file__)), "py-builtins.js").read() builtins = open(os.path.join(os.path.dirname(__file__),
"py-builtins.js")).read()
else: else:
builtins = open("py-builtins.js").read() builtins = open("py-builtins.js").read()
output.write(builtins) output.write(builtins)
Expand Down

0 comments on commit 5e49eb8

Please sign in to comment.