#499 [python] there is no dict comprehension for python2.6 which is in epel6
Merged 5 years ago by msuchy. Opened 5 years ago by frostyx.
copr/ frostyx/copr fix-python-tests  into  master

file modified
+1 -1
@@ -84,7 +84,7 @@ 

      """

      builds = waitable if type(waitable) == list else [waitable]

      watched = set([build.id for build in builds])

-     munches = {build.id: build for build in builds}

+     munches = dict((build.id, build) for build in builds)

      failed = []

      terminate = time.time() + timeout

  

no initial comment

rebased onto e016931

5 years ago

Pull-Request has been merged by msuchy

5 years ago
Metadata