aboutsummaryrefslogtreecommitdiff
path: root/node
diff options
context:
space:
mode:
authorPaul Sokolovsky <paul.sokolovsky@linaro.org>2012-04-24 15:29:36 +0300
committerPaul Sokolovsky <paul.sokolovsky@linaro.org>2012-04-24 15:29:36 +0300
commitad03b442f239ca70c18816c59093c553dc708a2a (patch)
treee31ab6b833bcfc1cb9368ce47e7af466c6e8b00b /node
parentb5109bbc3f85d64c0ba7d3eea75ae7d3a92c73d7 (diff)
Fix comment
Diffstat (limited to 'node')
-rwxr-xr-xnode/prepare_build_config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/node/prepare_build_config.py b/node/prepare_build_config.py
index 9bd9188..3ebebf8 100755
--- a/node/prepare_build_config.py
+++ b/node/prepare_build_config.py
@@ -17,7 +17,8 @@ class BuildConfigMismatchException(Exception):
pass
def shell_unquote(s):
- # Primitive implementation, we should
+ # Primitive implementation, but we didn't really advertize
+ # support for shell quoting, and I never saw it used
if len(s) < 2:
return s
if s[0] == '"' and s[-1] == '"':