We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef3df6d commit a26c788Copy full SHA for a26c788
1 file changed
libcloud/compute/drivers/ovh.py
@@ -29,9 +29,6 @@
29
from libcloud.compute.types import Provider, StorageVolumeState, VolumeSnapshotState
30
from libcloud.compute.drivers.openstack import OpenStackKeyPair, OpenStackNodeDriver
31
32
-from libcloud.libcloud.utils import logging
33
-
34
35
class OvhNodeDriver(NodeDriver):
36
"""
37
Libcloud driver for the Ovh API
@@ -541,7 +538,6 @@ def _to_volumes(self, objs):
541
538
def _to_location(self, obj):
542
539
location = self.connectionCls.LOCATIONS.get(obj)
543
540
if not location:
544
- logging.warning(f"Unknown location {obj} for OVH")
545
location = {"id": obj, "name": obj, "country": ""}
546
547
return NodeLocation(driver=self, **location)
0 commit comments