mirror of
https://github.com/SinTan1729/TvTimeToTrakt.git
synced 2024-12-25 21:08:37 -06:00
skip first row - instead of checking column name
This commit is contained in:
parent
2f22c25b9a
commit
77234f58a9
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ def processWatchedShows():
|
||||||
tvShowName = row[8]
|
tvShowName = row[8]
|
||||||
|
|
||||||
# Ignore the header row
|
# Ignore the header row
|
||||||
if tvShowName != "tv_show_name":
|
if rowsCount > 1:
|
||||||
# Get the TV Time Episode Id
|
# Get the TV Time Episode Id
|
||||||
tvShowEpisodeId = row[4]
|
tvShowEpisodeId = row[4]
|
||||||
# Get the TV Time Season Number
|
# Get the TV Time Season Number
|
||||||
|
|
Loading…
Reference in a new issue