jplana / python-etcd

A python client for etcd
Other
523 stars 210 forks source link

Documentation issue related to making directories #162

Closed pmarkowsky closed 8 years ago

pmarkowsky commented 8 years ago

Just noticed that the code sample to create a directory on the readthedocs site has client.write('/nodes/queue', dir=True) which throws an exception of needing at least 3 arguments.

Having played with it a bit it appears that

client.write('/nodes/queue', None, dir=True)

Is the correct incantation.