From 8690e1402429333533fa1672e8445cc6a9ba8526 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 30 Nov 2006 10:55:32 +0000 Subject: [PATCH] foreign_xrefs should be a list and not a dict anymore --- PLC/Sites.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Sites.py b/PLC/Sites.py index d05b285..a30c49b 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): -- 2.43.0