Skip to content

Commit 76ca352

Browse files
authored
Fix escape sequence in docstring regex (#1404)
1 parent 39e0223 commit 76ca352

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plexapi/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def fetchItems(
253253
254254
fetchItem(ekey, viewCount__gte=0)
255255
fetchItem(ekey, Media__container__in=["mp4", "mkv"])
256-
fetchItem(ekey, guid__regex=r"com\\.plexapp\\.agents\\.(imdb|themoviedb)://|tt\d+")
256+
fetchItem(ekey, guid__regex=r"com\\.plexapp\\.agents\\.(imdb|themoviedb)://|tt\\d+")
257257
fetchItem(ekey, guid__id__regex=r"(imdb|tmdb|tvdb)://")
258258
fetchItem(ekey, Media__Part__file__startswith="D:\\Movies")
259259

0 commit comments

Comments
 (0)