From: xavileon Date: Fri, 21 Oct 2011 21:41:28 +0000 (-0400) Subject: Parameter 'rec' missing in __init__ method X-Git-Tag: lxcbuild~15 X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=commitdiff_plain;h=d7a9ab6470e79e705ff2fbfc8494c31abd460253 Parameter 'rec' missing in __init__ method --- diff --git a/sliver_lxc.py b/sliver_lxc.py index e53820e..a93a215 100644 --- a/sliver_lxc.py +++ b/sliver_lxc.py @@ -9,9 +9,11 @@ class Sliver_LXC(accounts.Account): SHELL = '/bin/bash' TYPE = 'sliver.LXC' + # Need to add a tag at myplc to actually use this account + # type = 'sliver.LXC' - def __init__(self): - pass + def __init__(self, rec): + print "TODO __init__" @staticmethod def create(name, rec = None):