summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael E Brown <mebrown@michaels-house.net>2007-10-21 17:07:21 -0500
committerMichael E Brown <mebrown@michaels-house.net>2007-10-21 17:07:21 -0500
commit1a99caee3578ea15503f9851e1e7d1d1c00f4530 (patch)
treee52b4d7c7d9452e6b957345f1c4d6df01b583839
parent097d1b0dcb57c06da03b05bab2b18d88f05f1780 (diff)
downloadmock-1a99caee3578ea15503f9851e1e7d1d1c00f4530.tar.gz
mock-1a99caee3578ea15503f9851e1e7d1d1c00f4530.tar.xz
mock-1a99caee3578ea15503f9851e1e7d1d1c00f4530.zip
comment minor edits.mock-0.8.1
-rw-r--r--src/py-libs/backend.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/py-libs/backend.py b/src/py-libs/backend.py
index dde616c..e818fda 100644
--- a/src/py-libs/backend.py
+++ b/src/py-libs/backend.py
@@ -290,13 +290,14 @@ class Root(object):
for line in output.split('\n'):
if line.lower().find('No Package found for'.lower()) != -1:
raise mock.exception.BuildError, "Bad build req: %s. Exiting." % line
-# # nothing made us exit, so we continue
+ # nothing made us exit, so we continue
self._yum('install %s' % arg_string, returnOutput=1)
#
# UNPRIVLEGED:
# Everything in this function runs as the build user
+ # -> except hooks. :)
#
@traceLog(moduleLog)
def build(self, srpm, timeout):