summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-09-10 15:07:05 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-09-10 15:07:05 -0400
commitb0c383524dc1d44f4cd91c6f6876ef898aa50d9d (patch)
tree17287ef0915ca2a08180400bcc960980e17e804a
parent31b3f4a37c7fefa4f464c4e91c20829915f2b385 (diff)
downloadrpmbuild-remote-b0c383524dc1d44f4cd91c6f6876ef898aa50d9d.tar.gz
rpmbuild-remote-b0c383524dc1d44f4cd91c6f6876ef898aa50d9d.tar.xz
rpmbuild-remote-b0c383524dc1d44f4cd91c6f6876ef898aa50d9d.zip
Remove timing code
-rwxr-xr-xrpmbuild-remote.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py
index 68e8a49..069c6d2 100755
--- a/rpmbuild-remote.py
+++ b/rpmbuild-remote.py
@@ -189,10 +189,7 @@ def execute_jobs(opts, system, jobs):
LOG.info("Building %s from %d souces" % (file, len(job) - 1))
cmd = "rpmbuild -ba rpmbuild/SPECS/%s" % file
fetch = get_rpmbuild_results
- start = time.clock()
files = session.exec_command(cmd)
- finish = time.clock()
- LOG.info("Completed build %.03f seconds" % (finish - start))
LOG.info("Downloading results...")
files[0].close()
fetch(session, os.path.join(opts.dest, file), files[1], files[2])