From 6aa6bdebe6ec33b259d689c600df8209bf165f62 Mon Sep 17 00:00:00 2001 From: IgorKlopov Date: Tue, 25 Nov 2014 10:58:13 -0800 Subject: [PATCH] Travis says `line too long` 80 chars limit hit --- script/compile-coffee.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/compile-coffee.py b/script/compile-coffee.py index aba5665cf0..319b4b0511 100755 --- a/script/compile-coffee.py +++ b/script/compile-coffee.py @@ -22,7 +22,8 @@ def main(): if sys.platform in ['win32', 'cygwin']: node = find_node() if not node: - print 'Node.js is required for building atom-shell at paths:\n' + '\n'.join(WINDOWS_NODE_PATHs) + print 'Node.js is required for building atom-shell at paths:\n' + \ + '\n'.join(WINDOWS_NODE_PATHs) return 1 subprocess.check_call(['node', coffee, '-c', '-o', output_dir, input_file], executable=node)