diff options
author | James Meyer <james.meyer@operamail.com> | 2010-01-03 21:01:31 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-01-03 21:01:31 (GMT) |
commit | d0ab2894c2f1b80d0e75b8ef40e0dd150d74f0ec (patch) | |
tree | efd444dab58b0ff32d44597113675a0ed2b9ebc5 | |
parent | 2c504801a18ee36027ea994ad146cb4b64b63b5c (diff) | |
download | linhes_dev-d0ab2894c2f1b80d0e75b8ef40e0dd150d74f0ec.zip |
bld: hookup repo_check
-rw-r--r-- | build_tools/bin/bld_resource.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build_tools/bin/bld_resource.py b/build_tools/bin/bld_resource.py index 2167f47..566fda6 100644 --- a/build_tools/bin/bld_resource.py +++ b/build_tools/bin/bld_resource.py @@ -25,7 +25,7 @@ import distutils.dir_util import pprint import operator import itertools -import pprint +import pprint, commands pp = pprint.PrettyPrinter(indent=4) try: import pexpect @@ -1585,7 +1585,10 @@ class Ui_MainWindow(object): self.showbox("Reset interface", msg,True) def repo_check_for_problems(self): - print "no problems to report, but I didn't run anything" + cmd = "%s" %(self.all_settings['repocheck']) + (status,msg) = commands.getstatusoutput(cmd) + self.update_ouputwindow(msg) + def show_which_button(self, clicked_button): role = QtGui.QDialogButtonBox.buttonRole(self.buttonBox, clicked_button) |