Remove f-string for py2 compatibility

This commit is contained in:
Jason Lawrence 2020-04-29 11:21:50 -05:00
parent 1275f7c0d1
commit c4c90acd34

View file

@ -96,7 +96,7 @@ class PlexSonosClient(PlexClient):
{
"type": "music",
"providerIdentifier": "com.plexapp.plugins.library",
"containerKey": f"/playQueues/{playqueue.playQueueID}?own=1",
"containerKey": "/playQueues/{}?own=1".format(playqueue.playQueueID),
"key": media.key,
"offset": offset,
"machineIdentifier": media._server.machineIdentifier,