diff --git a/resources/lib/vfs.py b/resources/lib/vfs.py index d0df9ac..806ea54 100644 --- a/resources/lib/vfs.py +++ b/resources/lib/vfs.py @@ -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): diff --git a/service.py b/service.py index 50614a3..64dad03 100644 --- a/service.py +++ b/service.py @@ -1,4 +1,4 @@ from resources.lib.scheduler import BackupScheduler # start the backup scheduler -BackupScheduler().start() \ No newline at end of file +BackupScheduler().start()