diff --git a/util/kojira b/util/kojira index 3f751606..e0097547 100755 --- a/util/kojira +++ b/util/kojira @@ -873,7 +873,8 @@ class RepoManager(object): return elif len(self.tasks) + len(self.other_tasks) >= self.options.repo_tasks_limit: self.logger.debug("Tracked tasks (%s): %s" % (len(self.tasks), list(self.tasks))) - self.logger.debug("Untracked tasks (%s): %s" % (len(self.other_tasks), list(self.other_tasks))) + self.logger.debug("Untracked tasks (%s): %s" % (len(self.other_tasks), + list(self.other_tasks))) self.logger.info("Repo task limit reached") return tagname = tag['taginfo']['name'] diff --git a/vm/kojivmd b/vm/kojivmd index 5c403c23..8320281c 100755 --- a/vm/kojivmd +++ b/vm/kojivmd @@ -511,8 +511,8 @@ class VMExecTask(BaseTaskHandler): if opts.get('static_mac'): orig_mac = self.macAddr(orig_vm) - #doesn't work anymore, needs to place mac address inside the xml - #cmd += ["--mac", orig_mac] + # doesn't work anymore, needs to place mac address inside the xml + # cmd += ["--mac", orig_mac] opts['static_mac'] = orig_mac proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,