diff --git a/common/path_ops.py b/common/path_ops.py index 26eca72..bcff167 100644 --- a/common/path_ops.py +++ b/common/path_ops.py @@ -81,7 +81,7 @@ def path_stem(in_path): # Get list of path file extensions def path_suffixes(in_path): - return PurePath(in_path).suffixes + return PurePath(in_path).suffixes or [''] # Check if path is absolute def is_path_absolute(in_path):