From c3a4063cc33354e825b9aaa6773ee79e27d63024 Mon Sep 17 00:00:00 2001 From: Griatch Date: Tue, 20 Sep 2011 13:23:39 +0200 Subject: [PATCH] wiki: fixes. --- docs/sphinx/source/wiki/Attributes.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/source/wiki/Attributes.rst b/docs/sphinx/source/wiki/Attributes.rst index b2a580e0dc..4700ddeb75 100644 --- a/docs/sphinx/source/wiki/Attributes.rst +++ b/docs/sphinx/source/wiki/Attributes.rst @@ -176,7 +176,8 @@ Examples of valid attribute data: # a mixed dictionary/list obj.db.test5 = 'members': [obj1,obj2,obj3], 'enemies':[obj4,obj5] # a tuple with a list in it - obj.db.test6 = (1,3,4,8, ["test", "test2"], 9)# a set will still be stored and returned as a list [1,2,3,4,5]! + obj.db.test6 = (1,3,4,8, ["test", "test2"], 9) + # a set will still be stored and returned as a list [1,2,3,4,5]! obj.db.test7 = set([1,2,3,4,5]) Example of non-supported save: