pep8 fixes

This commit is contained in:
Rob Weber 2019-12-30 10:17:58 -06:00
parent 7ce9123e1f
commit 90b4aeeebe
2 changed files with 3 additions and 3 deletions

View File

@ -20,11 +20,11 @@ class Vfs:
def clean_path(self, path):
# fix slashes
path = path.replace("\\", "/")
# check if trailing slash is included
if(path[-1:] != '/'):
path = path + '/'
return path
def set_root(self, rootString):

View File

@ -1,4 +1,4 @@
from resources.lib.scheduler import BackupScheduler
# start the backup scheduler
BackupScheduler().start()
BackupScheduler().start()