Skip to content

Commit

Permalink
clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
ruby0x1 committed Sep 19, 2014
1 parent 8c63c21 commit 574cde3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@ def get_status(self):
else:
_result.append(['flow target', self.system])

_result.append(['Toggle debug build', "currently debug : " + str(self.build_debug).lower() ])
_result.append(['Toggle verbose build', "currently verbose : " + str(self.build_verbose).lower() ])
_result.append(['Toggle build only', "currently build only : " + str(self.build_only).lower() ])
_result.append(['Toggle launch only', "currently launch only : " + str(self.launch_only).lower() ])
_result.append(['Toggle debug build', "currently : " + str(self.build_debug).lower() ])
_result.append(['Toggle verbose build', "currently : " + str(self.build_verbose).lower() ])
_result.append(['Toggle build only', "currently : " + str(self.build_only).lower() ])
_result.append(['Toggle launch only', "currently : " + str(self.launch_only).lower() ])
# _result.append(['Package output folder', "generates a zip to output folder"])
# _result.append(['Clean output folder', "delete the output folder"])
# _result.append(['Clean build output', "delete the build folder"])
Expand Down

0 comments on commit 574cde3

Please sign in to comment.