mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-25 13:10:17 +00:00
Remove f-string for py2 compatibility
This commit is contained in:
parent
1275f7c0d1
commit
c4c90acd34
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue