Commit ea9874e1 by Őry Máté

vm: add missing return statement to find_unused_vnc_port

bug introduced in f70812a3
parent a152b160
......@@ -61,6 +61,8 @@ def find_unused_vnc_port():
if port is None:
raise Exception("No unused port could be found for VNC.")
else:
return port
class InstanceActiveManager(Manager):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment