From ba30d3162ebe010c9ed7ce2e3ae6a70366f9c98e Mon Sep 17 00:00:00 2001 From: Richard Wall Date: Sat, 18 Jun 2011 15:43:12 +0100 Subject: use closure compiler @ prefixes --- jarmonbuild/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jarmonbuild') diff --git a/jarmonbuild/commands.py b/jarmonbuild/commands.py index 7c0e947..14d99a5 100644 --- a/jarmonbuild/commands.py +++ b/jarmonbuild/commands.py @@ -296,7 +296,7 @@ class BuildJavascriptDependenciesCommand(BuildCommand): response = conn.getresponse() with open(depjs_path, 'w') as f: for param in params: - f.write('// %s: %s\n' % param) + f.write('// @%s %s\n' % param) while not response.isclosed(): f.write(response.read(1024 * 10)) -- cgit v1.2.3-2-g168b