Skip to content

Commit 730ed0f

Browse files
fixed a typo
1 parent e331f57 commit 730ed0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SoftLayer/CLI/virt/migrate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def cli(env, guest, migrate_all, host):
2020

2121
vsi = SoftLayer.VSManager(env.client)
2222
pending_filter = {'virtualGuests': {'pendingMigrationFlag': {'operation': 1}}}
23-
dedicated_filer = {'virtualGuests': {'dedicatedHost': {'id': {'operation': 'not null'}}}}
23+
dedicated_filter = {'virtualGuests': {'dedicatedHost': {'id': {'operation': 'not null'}}}}
2424
mask = """mask[
2525
id, hostname, domain, datacenter, pendingMigrationFlag, powerState,
2626
primaryIpAddress,primaryBackendIpAddress, dedicatedHost
@@ -44,7 +44,7 @@ def cli(env, guest, migrate_all, host):
4444
else:
4545
click.secho("No guests require migration at this time", fg='green')
4646

47-
migrateable = vsi.list_instances(filter=dedicated_filer, mask=mask)
47+
migrateable = vsi.list_instances(filter=dedicated_filter, mask=mask)
4848
migrateable_table = formatting.Table(['id', 'hostname', 'domain', 'datacenter', 'Host Name', 'Host Id'],
4949
title="Dedicated Guests")
5050
for vsi_object in migrateable:

0 commit comments

Comments
 (0)