summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Rinke <jordan@openstack.org>2011-01-25 09:18:55 -0800
committerJordan Rinke <jordan@openstack.org>2011-01-25 09:18:55 -0800
commit0fd1fa81e86c708020e8f3940da38cfc768557fb (patch)
tree45b35891df6a8501879c16de35c29c6b35c7163e
parent303803ca29b7676d544e4c1988eb467bc8d2e0b9 (diff)
downloadnova-0fd1fa81e86c708020e8f3940da38cfc768557fb.tar.gz
nova-0fd1fa81e86c708020e8f3940da38cfc768557fb.tar.xz
nova-0fd1fa81e86c708020e8f3940da38cfc768557fb.zip
Fixed spacing issue for pep8
-rw-r--r--nova/virt/hyperv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/hyperv.py b/nova/virt/hyperv.py
index 190c1a880..4fed299d4 100644
--- a/nova/virt/hyperv.py
+++ b/nova/virt/hyperv.py
@@ -191,7 +191,7 @@ class HyperVConnection(object):
vcpus = long(instance['vcpus'])
procsetting.VirtualQuantity = vcpus
procsetting.Reservation = vcpus
- procsetting.Limit = 100000 # static assignment to 100% since no limit/weight variable exists now.
+ procsetting.Limit = 100000 # static assignment to 100% since no limit/weight variable exists now.
(job, ret_val) = vs_man_svc.ModifyVirtualSystemResources(
vm.path_(), [procsetting.GetText_(1)])