diff options
Diffstat (limited to 'jarmonbuild/commands.py')
-rw-r--r-- | jarmonbuild/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jarmonbuild/commands.py b/jarmonbuild/commands.py index fc422d9..1aaa155 100644 --- a/jarmonbuild/commands.py +++ b/jarmonbuild/commands.py @@ -285,8 +285,8 @@ class BuildJavascriptDependenciesCommand(BuildCommand): params = [] for line in open(depjs_path): line = line.strip() - if line.startswith('//'): - key, val = line.lstrip('/ @').strip().split(':', 1) + if line.startswith('// @'): + key, val = line.lstrip('/ @').strip().split(None, 1) params.append((key.strip(), val.strip())) # Always use the following value for the Content-type header. |