move error fixing
This commit is contained in:
parent
4f7d7db678
commit
ccb103ad36
4 changed files with 31 additions and 26 deletions
|
|
@ -5,15 +5,15 @@ Created on Sat Jul 6 20:26:22 2013
|
|||
@author: shanef
|
||||
"""
|
||||
|
||||
class TVShow:
|
||||
class TVShow(object):
|
||||
def __init__(self, episode, season, title, subtitle, description, inputFile='', outputFile=''):
|
||||
self.episode = episode
|
||||
self.season = season
|
||||
self.episode = str(episode)
|
||||
self.season = str(season)
|
||||
self.title = title
|
||||
self.subtitle = subtitle
|
||||
self.description = description
|
||||
self.inputFile = inputFile
|
||||
self.outputFile = outputFile
|
||||
|
||||
|
||||
def Print(self):
|
||||
print "Input: {0} -> Output: {1}".format(self.inputFile, self.outputFile)
|
||||
Loading…
Add table
Add a link
Reference in a new issue