774056846 4 달 전
부모
커밋
00083a893c
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      src/core/callcenter/esl/client.py

+ 3 - 2
src/core/callcenter/esl/client.py

@@ -433,7 +433,7 @@ class InboundClient:
             device_id,
             " on"
         ]
-        arg = "".join(builder)
+        arg = ''.join(builder)
         return self.con.api(PAUSE, arg)
 
     def hold_play(self, device_id, play):
@@ -445,7 +445,8 @@ class InboundClient:
             " ",
             SMF_ALEG
         ]
-        arg = "".join(builder)
+        print('debugger::hold_play, device_id=%s, play=%s' % (device_id, play), flush=True)
+        arg = ''.join(builder)
         print('debugger::hold_play, arg=%s' % arg, flush=True)
         return self.con.api(UUID_BROADCAST, arg)