cola hace 2 años
padre
commit
f024e5cec4
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      handlers/PitcherPanelHandler.py

+ 2 - 1
handlers/PitcherPanelHandler.py

@@ -94,7 +94,8 @@ class AgentList(BaseHandler):
         if not self._au:
             self.write_fail(msg='auth error')
         else:
-            data = get_agent_list()
+            args = self.get_args()
+            data = get_agent_list(args.get("pitcher"))
             self.write_json(data=data)