Skip to content

Commit

Permalink
scripts/reproducible-check: Call set(..) on the correct part of the c…
Browse files Browse the repository at this point in the history
…omprehension.
  • Loading branch information
lamby committed Sep 16, 2017
1 parent 77064b0 commit ce1fd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/reproducible-check
Expand Up @@ -168,7 +168,7 @@ class ReproducibleCheck(object):
))

def output_raw(self, unreproducible, installed):
for x in sorted(x for xs in set(unreproducible.values()) for x in xs):
for x in sorted(x for xs in unreproducible.values() for x in set(xs)):
print(x)


Expand Down

0 comments on commit ce1fd56

Please sign in to comment.