Fixed the behaviour of some build commands to match that in wiki build tutorial.

This commit is contained in:
Griatch 2010-08-31 17:31:48 +00:00
parent 96be66828c
commit 03cc4970d0
2 changed files with 14 additions and 7 deletions

View file

@ -460,7 +460,7 @@ class TypedObject(SharedMemoryModel):
def permissions_set(self, value):
"Setter. Allows for self.name = value. Stores as a comma-separated string."
if is_iter(value):
value = ",".join([str(val).strip().lower() for val in value])
value = ",".join([str(val).strip() for val in value])
self.db_permissions = value
self.save()
#@permissions.deleter