Remove duplicated dict entry Signed-off-by: Quentin Pradet <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/24d8709d Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/24d8709d Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/24d8709d Branch: refs/heads/trunk Commit: 24d8709d2d34b8c4779214a22b985e0825cb60f8 Parents: 68ba179 Author: Rémy Léone <[email protected]> Authored: Fri Mar 16 10:01:01 2018 +0100 Committer: Quentin Pradet <[email protected]> Committed: Fri Mar 16 19:21:55 2018 +0400 ---------------------------------------------------------------------- libcloud/compute/drivers/profitbricks.py | 1 - libcloud/compute/types.py | 1 - 2 files changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/24d8709d/libcloud/compute/drivers/profitbricks.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/profitbricks.py b/libcloud/compute/drivers/profitbricks.py index 1b12452..d117c9a 100644 --- a/libcloud/compute/drivers/profitbricks.py +++ b/libcloud/compute/drivers/profitbricks.py @@ -3777,7 +3777,6 @@ class ProfitBricksNodeDriver(NodeDriver): 'size': 'size', 'cpuHotPlug': 'cpu_hot_plug', 'cpuHotUnplug': 'cpu_hot_unplug', - 'deviceNumber': 'device_number', 'discScsiHotPlug': 'disc_scsi_hot_plug', 'discScsiHotUnplug': 'disc_scsi_hot_unplug', 'discVirtioHotPlug': 'disc_virtio_hot_plug', http://git-wip-us.apache.org/repos/asf/libcloud/blob/24d8709d/libcloud/compute/types.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/types.py b/libcloud/compute/types.py index 89d7d06..44e8687 100644 --- a/libcloud/compute/types.py +++ b/libcloud/compute/types.py @@ -241,7 +241,6 @@ OLD_CONSTANT_TO_NEW_MAPPING = { Provider.EC2_AP_NORTHEAST2: Provider.EC2, Provider.EC2_US_WEST_OREGON: Provider.EC2, Provider.EC2_SA_EAST: Provider.EC2, - Provider.EC2_AP_SOUTHEAST: Provider.EC2, Provider.EC2_CA_CENTRAL1: Provider.EC2, # ElasticHosts
