Skip to content

Commit

Permalink
Fix escape sequence in docstring regex (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlawren committed Apr 23, 2024
1 parent 39e0223 commit 76ca352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plexapi/base.py
Expand Up @@ -253,7 +253,7 @@ def fetchItems(
fetchItem(ekey, viewCount__gte=0)
fetchItem(ekey, Media__container__in=["mp4", "mkv"])
fetchItem(ekey, guid__regex=r"com\\.plexapp\\.agents\\.(imdb|themoviedb)://|tt\d+")
fetchItem(ekey, guid__regex=r"com\\.plexapp\\.agents\\.(imdb|themoviedb)://|tt\\d+")
fetchItem(ekey, guid__id__regex=r"(imdb|tmdb|tvdb)://")
fetchItem(ekey, Media__Part__file__startswith="D:\\Movies")
Expand Down

0 comments on commit 76ca352

Please sign in to comment.