Skip to content

Commit

Permalink
fixed: error in flag naming
Browse files Browse the repository at this point in the history
  • Loading branch information
François-Xavier Wicht committed Aug 14, 2022
1 parent 4ba6a37 commit 68fb3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plex-playlist-sync/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
plex_url=os.getenv("PLEX_URL"),
plex_token=os.getenv("PLEX_TOKEN"),
write_missing_as_csv=os.getenv("WRITE_MISSING_AS_CSV", "0") == "1",
append_service_suffix=os.getenv("ADD_SERVICE_SUFFIX", "1") == "1",
append_service_suffix=os.getenv("APPEND_SERVICE_SUFFIX", "1") == "1",
add_playlist_poster=os.getenv("ADD_PLAYLIST_POSTER", "1") == "1",
add_playlist_description=os.getenv("ADD_PLAYLIST_DESCRIPTION", "1") == "1",
append_instead_of_sync=os.getenv("APPEND_INSTEAD_OF_SYNC", False) == "1",
Expand Down

0 comments on commit 68fb3fa

Please sign in to comment.