fix
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pünkösd Marcell 2021-12-13 17:21:11 +01:00
parent 08f7caeeec
commit b03eb1bd08
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class AssignmentView(FlaskView):
for key in redis_client.keys("SCHEDULED:*"):
target = redis_client.get(key)
if target:
name = key[10:]
name = key[10:].decode('utf-8')
current_scheduling_table[name] = target.decode('utf-8')
default_target = redis_client.get('DEFAULT:SCHEDULED')