[appimage] refactoring: removing '/' from INSTALLATION_PATH constant

This commit is contained in:
Vinicius Moreira
2021-11-29 10:45:10 -03:00
parent ab302d460b
commit 9f4e08e29c
4 changed files with 5 additions and 5 deletions

View File

@@ -234,7 +234,7 @@ class SymlinksVerifier(Thread):
def run(self):
if os.path.exists(INSTALLATION_PATH):
installed_files = glob.glob('{}/*/*.json'.format(INSTALLATION_PATH))
installed_files = glob.glob(f'{INSTALLATION_PATH}/*/*.json')
if installed_files:
self.logger.info("Checking installed AppImage files with no symlinks created")