From d0ab2894c2f1b80d0e75b8ef40e0dd150d74f0ec Mon Sep 17 00:00:00 2001 From: James Meyer Date: Sun, 3 Jan 2010 15:01:31 -0600 Subject: bld: hookup repo_check --- build_tools/bin/bld_resource.py | 7 +++++-- 1 file 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) -- cgit v0.12