Closed pmarkowsky closed 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.
client.write('/nodes/queue', dir=True)
Having played with it a bit it appears that
client.write('/nodes/queue', None, dir=True)
Is the correct incantation.
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.