Skip to content
Snippets Groups Projects
Commit e6a8d799 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

cmdlib: Fix “unpack non-sequence” error


The callback is expected to return a two-valued tuple.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent d505bc48
No related branches found
No related tags found
No related merge requests found
...@@ -12190,6 +12190,8 @@ class LUInstanceSetParams(LogicalUnit): ...@@ -12190,6 +12190,8 @@ class LUInstanceSetParams(LogicalUnit):
private.params = new_params private.params = new_params
private.filled = new_filled_params private.filled = new_filled_params
   
return (None, None)
def CheckPrereq(self): def CheckPrereq(self):
"""Check prerequisites. """Check prerequisites.
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment