Enter a TV show name for search:

Home

Link to compare episode

Title:

NameChar #1

TV Show Lookup:

Series (index year):

Episode (index):

--> -->
 
 
ValueError
Python 3.6.9: /usr/bin/python3
Fri Mar 13 08:26:41 2026

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /var/www/test/episode.py in <module>()
    169     title_names = re.findall(pattern, page)
    170 
=>  171     t1, t2 = zip(*title_names)
    172     for x in ep_names:
    173         if re.match("S", x):
t1 undefined, t2 undefined, builtin zip = <class 'zip'>, title_names = []

ValueError: not enough values to unpack (expected 2, got 0)
      args = ('not enough values to unpack (expected 2, got 0)',)
      with_traceback = <built-in method with_traceback of ValueError object>