From 9faec43403ecba3fc7d0a619595df84a92576af6 Mon Sep 17 00:00:00 2001 From: Aleksey Maksimov Date: Tue, 18 Jun 2013 18:10:56 +0800 Subject: [PATCH] Fixed typo. Shall stop posting fixes from Github UI no matter how small they look! This is the last one! :) --- jenkinsapi/jenkins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.7.4