Parameter 'rec' missing in __init__ method
authorxavileon <xleon@ac.upc.edu>
Fri, 21 Oct 2011 21:41:28 +0000 (17:41 -0400)
committerxavileon <xleon@ac.upc.edu>
Fri, 21 Oct 2011 21:41:28 +0000 (17:41 -0400)
sliver_lxc.py

index e53820e..a93a215 100644 (file)
@@ -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):