diff --git a/medusa/providers/torrent/html/yggtorrent.py b/medusa/providers/torrent/html/yggtorrent.py
index bb9f4d18c2..735ccb6eb1 100644
--- a/medusa/providers/torrent/html/yggtorrent.py
+++ b/medusa/providers/torrent/html/yggtorrent.py
@@ -47,6 +47,12 @@ def __init__(self):
# Proper Strings
self.proper_strings = ['PROPER', 'REPACK', 'REAL', 'RERIP']
+ # Add Saison as a season pack search keyword, as this is a French provider.
+ self.season_templates = (
+ 'S{season:0>2}', # example: 'Series.Name.S03'
+ 'Saison {season}', # example: 'Series.Name.Saison 3'
+ )
+
# Cache
self.cache = tv.Cache(self, min_time=20)