diff options
Diffstat (limited to 'build_tools/bin/bld_resource.py')
-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) |