Thu, 14 Jul 2022 10:18:45 +0200
Fixed a bug introduced by pathlib usage.
src/eric7/Utilities/__init__.py | file | annotate | diff | comparison | revisions |
--- a/src/eric7/Utilities/__init__.py Wed Jul 13 16:22:49 2022 +0200 +++ b/src/eric7/Utilities/__init__.py Thu Jul 14 10:18:45 2022 +0200 @@ -800,7 +800,7 @@ @return path with converted separator characters @rtype str """ - return str(pathlib.PurePath(path)) + return str(pathlib.PurePath(path)) if bool(path) else "" def fromNativeSeparators(path): @@ -812,7 +812,7 @@ @return path with converted separator characters @rtype str """ - return pathlib.PurePath(path).as_posix() + return pathlib.PurePath(path).as_posix() if bool(path) else "" def normcasepath(path):