From: Paul Belanger Date: Wed, 14 Nov 2012 15:17:48 +0000 (-0500) Subject: Fix typo when passing config to BeautifulSoup() X-Git-Tag: v0.2.23~263^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4e4cd7dc551c4754c3128a8cb8dc8b79719cc9b;p=tools%2Fpython-jenkinsapi.git Fix typo when passing config to BeautifulSoup() Signed-off-by: Paul Belanger --- diff --git a/jenkinsapi/job.py b/jenkinsapi/job.py index 27402bb..7d11921 100644 --- a/jenkinsapi/job.py +++ b/jenkinsapi/job.py @@ -255,7 +255,7 @@ class Job(JenkinsBase): Also refresh the BeautifulSoup object since the config has changed """ post_data = self.post_data("%(baseurl)s/config.xml" % self.__dict__, config) - self.bs = BeautifulSoup(self._config, 'xml') + self.bs = BeautifulSoup(config, 'xml') return post_data def get_downstream_jobs(self):