From 75b20b7384cb82a70d74f550f8eefea43e0b7679 Mon Sep 17 00:00:00 2001 From: AnythingTechPro Date: Fri, 11 May 2018 08:59:35 -0400 Subject: [PATCH] direct/distributed: fixed typo --- direct/src/distributed/AstronInternalRepository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/distributed/AstronInternalRepository.py b/direct/src/distributed/AstronInternalRepository.py index ba06142a9f5..4b2f8446295 100644 --- a/direct/src/distributed/AstronInternalRepository.py +++ b/direct/src/distributed/AstronInternalRepository.py @@ -206,7 +206,7 @@ def addPostRemove(self, dg): dg2 = PyDatagram() dg2.addServerControlHeader(CONTROL_ADD_POST_REMOVE) dg2.addUint64(self.ourChannel) - dg2.addString(dg.getMessage()) + dg2.appendData(dg.getMessage()) self.send(dg2) def clearPostRemove(self):