diff --git a/jenkins_jobs/cli/entry.py b/jenkins_jobs/cli/entry.py index 30373b490..77669b0d6 100644 --- a/jenkins_jobs/cli/entry.py +++ b/jenkins_jobs/cli/entry.py @@ -94,8 +94,9 @@ class JenkinsJobs(object): # Note: CLI options override config file options. if getattr(self.options, 'update', None) is None: - self.options.update = str(self.jjb_config.builder.get('update', - 'all')) + self.options.update = self.jjb_config.builder.get('update') + if self.options.update is None: + self.options.update = 'all' if getattr(self.options, 'plugins_info_path', None) is not None: with io.open(self.options.plugins_info_path, 'r',