diff options
author | t-espave <unknown> | 2011-08-16 14:29:48 -0700 |
---|---|---|
committer | t-espave <unknown> | 2011-08-16 14:29:48 -0700 |
commit | e858ffc82e9f0bc4bf734104df95594f8a3bb1ae (patch) | |
tree | e36017e11dcc147098dd4db5918b761fa5098f3f /BCT | |
parent | 53f5604e99f3ec04fde6305dfa4b1223e0722d27 (diff) |
saving navigation bad smells report
Diffstat (limited to 'BCT')
-rw-r--r-- | BCT/PhoneControlsExtractor/navGraphBuilder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BCT/PhoneControlsExtractor/navGraphBuilder.py b/BCT/PhoneControlsExtractor/navGraphBuilder.py index 7f008fd3..8d72c785 100644 --- a/BCT/PhoneControlsExtractor/navGraphBuilder.py +++ b/BCT/PhoneControlsExtractor/navGraphBuilder.py @@ -93,7 +93,7 @@ def createAppControlsFile(appFile, outputFile, format): def bctAppFile(appFile, outputFile, format):
error = os.system(BCT_PATH + " /heap:splitFields /lib:\"" + WPLIB_PATH + "\" /wpnav /phoneControls:\"" + \
- os.path.splitext(appFile)[0] + ".controls\" \"" + appFile + "\" > nul")
+ os.path.splitext(appFile)[0] + ".controls\" \"" + appFile + "\" > NavigationReport")
if error != 0 or not os.path.exists(os.path.splitext(appFile)[0] + ".bpl"):
return False
return True
|