diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-11-05 20:48:19 -0700 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-11-05 20:48:19 -0700 |
commit | 906a8745c2a70d3bf797bce28c5c0ba055f8b98a (patch) | |
tree | 98df65205fea7e448f12df4afb5674dea8af5936 /tools/namespacer.py | |
parent | 093bfe5c5ac4c9713250dc7da75e5c20022bbe01 (diff) |
framework for integration tests
Diffstat (limited to 'tools/namespacer.py')
-rw-r--r-- | tools/namespacer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/namespacer.py b/tools/namespacer.py index 966e917c..2fae222d 100644 --- a/tools/namespacer.py +++ b/tools/namespacer.py @@ -45,7 +45,8 @@ for line in data: if '<' not in ret and '[' not in ret and '(' not in ret: func = func[i+1:] - funcparts = ['Namespace'] + func.split('::') + #funcparts = ['Namespace'] + func.split('::') + funcparts = func.split('::') currspace = space for part in funcparts[:-1]: |