bug fixing

This commit is contained in:
2013-07-08 17:40:55 +10:00
parent 7a34fd01c8
commit 6e2aff7ab8
3 changed files with 22 additions and 7 deletions

View File

@@ -63,6 +63,13 @@ class Settings:
return ""
else:
return show["InputDirectory"]
def GetShowUnknownDirectory(self, showName):
show = self.__GetShowSubsection(showName)
if show is None:
return ""
else:
return show["UnknownDirectory"]
def GetShowOutputDirectory(self, showName):
show = self.__GetShowSubsection(showName)