diff --git a/logic_ohli24.py b/logic_ohli24.py
index eb8de2d..4c9f57f 100644
--- a/logic_ohli24.py
+++ b/logic_ohli24.py
@@ -498,10 +498,16 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
match = re.compile(r'(?P
.*?)\s*((?P\d+)%s)?\s*((?P\d+)%s)' % (u'기', u'화')).search(
self.info['title'])
+
+ # epi_no 초기값
+ epi_no = 1
+
if match:
self.content_title = match.group('title').strip()
if 'season' in match.groupdict() and match.group('season') is not None:
self.season = int(match.group('season'))
+
+ # epi_no = 1
epi_no = int(match.group('epi_no'))
ret = '%s.S%sE%s.%s-OHNI24.mp4' % (
self.content_title, '0%s' % self.season if self.season < 10 else self.season,