Added thumbnail generator

This commit is contained in:
simon987
2018-03-20 19:23:38 -04:00
parent 047d2653bc
commit 90c1de3362
10 changed files with 90 additions and 13 deletions

View File

@@ -54,6 +54,14 @@ class Directory:
def __str__(self):
return self.path + " | enabled: " + str(self.enabled) + " | opts: " + str(self.options)
def get_option(self, key):
for option in self.options:
if option.key == key:
return option.value
return None
class Task: