From d7a9ab6470e79e705ff2fbfc8494c31abd460253 Mon Sep 17 00:00:00 2001 From: xavileon Date: Fri, 21 Oct 2011 17:41:28 -0400 Subject: [PATCH] Parameter 'rec' missing in __init__ method --- sliver_lxc.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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): -- 2.43.0