From: Thierry Parmentelat Date: Thu, 30 Nov 2006 10:55:32 +0000 (+0000) Subject: foreign_xrefs should be a list and not a dict anymore X-Git-Tag: pycurl-7_13_1~221 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=8690e1402429333533fa1672e8445cc6a9ba8526;p=plcapi.git foreign_xrefs should be a list and not a dict anymore --- diff --git a/PLC/Sites.py b/PLC/Sites.py index d05b2856..a30c49b5 100644 --- a/PLC/Sites.py +++ b/PLC/Sites.py @@ -48,7 +48,7 @@ class Site(Row): foreign_fields = ['abbreviated_name', 'name', 'is_public', 'latitude', 'longitude', 'url', 'date_created', 'last_updated', 'max_slices', 'max_slivers', ] - foreign_xrefs = {} + foreign_xrefs = [] def validate_name(self, name): if not len(name):