Skip to content
Snippets Groups Projects
Commit 21599191 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix

parent 539ca13d
No related branches found
No related tags found
No related merge requests found
Pipeline #64172 canceled with stages
in 31 minutes and 9 seconds
......@@ -5,6 +5,7 @@ v2.1.2
======
* extra_properties passed to Cluster might now be a dict
* basically all arguments can be passed as dicts
v2.1.1
======
......
......@@ -79,7 +79,7 @@ class Cluster(object):
if isinstance(extra_properties, dict):
extra_props = []
for key, value in extra_props.items():
for key, value in extra_properties.items():
extra_props.append((tobytes(key), argumentify(value)))
extra_properties = extra_props
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment