From: Aleksey Maksimov Date: Tue, 18 Jun 2013 10:10:56 +0000 (+0800) Subject: Fixed typo. X-Git-Tag: v0.2.23~148 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9faec43403ecba3fc7d0a619595df84a92576af6;p=tools%2Fpython-jenkinsapi.git Fixed typo. Shall stop posting fixes from Github UI no matter how small they look! This is the last one! :) --- diff --git a/jenkinsapi/jenkins.py b/jenkinsapi/jenkins.py index 5082138..6c6de9d 100644 --- a/jenkinsapi/jenkins.py +++ b/jenkinsapi/jenkins.py @@ -84,7 +84,7 @@ class Jenkins(JenkinsBase): Get the jobs information :return url, name """ - for info in self._data["jobs"] + for info in self._data["jobs"]: yield info["url"], info["name"] def get_jobs_list(self):