Skip to content

Commit

Permalink
working on #30
Browse files Browse the repository at this point in the history
  • Loading branch information
accaminero committed Mar 13, 2014
1 parent e2f7cbb commit 1497ca7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions labmanager/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,12 @@ class RLMS(Base, SBBase):
configuration = Column(Unicode(10 * 1024))

def __init__(self, kind = None, url = None, location = None, version = None, configuration = '{}'):
self.kind = kind
self.location = location
self.url = url
self.version = version
self.kind = "saaskind" # kind
self.location = "saasloc" # location
self.url = "saasurl" # url
self.version = "saasver" # version
self.configuration = configuration

self.validated = False


Expand Down

0 comments on commit 1497ca7

Please sign in to comment.