~ fixing bugs in ConciergeServer.py test code

~ fix bug in ConciergeModule: wrong closing tag for avatars list
This commit is contained in:
Dr Scofield
2009-01-26 21:35:16 +00:00
parent 0aafeb5da3
commit 6cebb6e760
2 changed files with 6 additions and 6 deletions

View File

@@ -391,7 +391,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
string name = _attendeeNames[uuid];
list.Append(String.Format(" <avatar name=\"{0}\" uuid=\"{1}\" />\n", name, uuid));
}
list.Append("</avatar>");
list.Append("</avatars>");
}
string payload = list.ToString();