From 5e49eb8d86d07a03ad30070fb0a2d709a095d855 Mon Sep 17 00:00:00 2001 From: Ondrej Certik Date: Mon, 5 Dec 2011 10:02:47 -0800 Subject: [PATCH] Fix a typo (closes #20) --- pyjs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyjs.py b/pyjs.py index 0f29fe9..a2e35d8 100755 --- a/pyjs.py +++ b/pyjs.py @@ -31,7 +31,8 @@ def main(): if options.include_builtins: 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: builtins = open("py-builtins.js").read() output.write(builtins)