Skip to content

Python 3 fix. (Fixes BUGZ-3939)

Maps are lists in Python 2. You can add lists together. Maps are iterators in Python 3. You can not add iterators together. You can convert iterators to lists and then add them together.

Fixes BUGZ-3939.

Edited by Maiken

Merge request reports