Skip to content

Commit

Permalink
Merge pull request #42 from fwicht/main
Browse files Browse the repository at this point in the history
fixed: error in flag naming
  • Loading branch information
rnagabhyrava authored Aug 14, 2022
2 parents 4a13cb0 + 68fb3fa commit c3333a5
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 c3333a5

Please sign in to comment.