diff --git a/CHANGES.md b/CHANGES.md index d62d619c..b129bdba 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -18,6 +18,7 @@ * Change KickassTorrents provider URLs * Fix missing Content-Type headers for posters and banners * Remove config Backup & Restore +* Fix article removal for sorting on Display Show, and API pages [develop changelog] * Add TVRage network name standardization diff --git a/sickbeard/helpers.py b/sickbeard/helpers.py index 2b92f168..74805462 100644 --- a/sickbeard/helpers.py +++ b/sickbeard/helpers.py @@ -1429,4 +1429,4 @@ def get_size(start_path='.'): return total_size def remove_article(text=''): - return re.sub(r'(?i)/^(?:(?:A(?!\s+to)n?)|The)\s(\w)', r'\1', text) \ No newline at end of file + return re.sub(r'(?i)^(?:(?:A(?!\s+to)n?)|The)\s(\w)', r'\1', text) \ No newline at end of file