Browse Source

Change TestRunFile to be always without base path (to work on linux)

bernhardbuhl 3 years ago
parent
commit
15f424cbfd
1 changed files with 1 additions and 0 deletions
  1. 1 0
      baangt/base/FilesOpen.py

+ 1 - 0
baangt/base/FilesOpen.py

@@ -40,6 +40,7 @@ def open(filenameAndPath: str):
 
     elif platform.system().lower() == GC.PLATFORM_LINUX:
         filenameAndPath = f'"{filenameAndPath}"'
+        logger.debug(f"In Linux trying to call xdg-open with filename: {str(filenameAndPath)}")
         status = subprocess.call(["xdg-open", str(filenameAndPath)])
         if status == 0:
             return True