From 7bb6782037ee7b5f6ca974504ee1810f5a06a96a Mon Sep 17 00:00:00 2001 From: Retspen Date: Fri, 27 Mar 2015 11:34:43 +0200 Subject: [PATCH] Fixed powercycle on instances page --- instances/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instances/views.py b/instances/views.py index 248f99c..ea8a159 100644 --- a/instances/views.py +++ b/instances/views.py @@ -91,7 +91,7 @@ def instances(request): if 'powercycle' in request.POST: msg = _("Power Cycle") conn.force_shutdown(name) - conn.start() + conn.start(name) addlogmsg(request.user.id, instance.id, msg) return HttpResponseRedirect(request.get_full_path()) if 'poweroff' in request.POST: