python-doctl icon indicating copy to clipboard operation
python-doctl copied to clipboard

Unable to call domain.create()

Open kiyose opened this issue 4 years ago • 0 comments

There is a typo on 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

kiyose avatar Jan 01 '21 00:01 kiyose