There is a typo on [doctl.py#L254](https://github.com/do-community/python-doctl/blob/8602a258fbdf7c526cac969eaa4b97aa026eda1e/doctl.py#L254). ``` return self.do.doctl( "compute", "domain", create, domain, "--ip-address", ip_address ) ``` 'create' needs to be quoted ``` return self.do.doctl( "compute", "domain", "create", domain, "--ip-address", ip_address ) ``` I've fixed it in PR #12
There is a typo on doctl.py#L254.
'create' needs to be quoted
I've fixed it in PR #12