Skip to content

Commit

Permalink
fix jk dirty when there is no dirty files
Browse files Browse the repository at this point in the history
  • Loading branch information
flupke committed Sep 12, 2017
1 parent 8755579 commit 4e5906a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jenskipper/cli/dirty.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def get_dirty_jobs(base_dir, jobs_names=None):

# Show dirty jobs
return reduce(set.union,
(files_jobs[fname] for fname in dirty_files))
(files_jobs[fname] for fname in dirty_files),
set())


def _get_vcs(base_dir):
Expand Down

0 comments on commit 4e5906a

Please sign in to comment.