Commit 7fd19fa4 authored by Alex "mcmonkey" Goodwin's avatar Alex "mcmonkey" Goodwin
Browse files

initial fix for filename length limits on *nix systems

parent 5cea278d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -512,6 +512,9 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i
            file_decoration = "-" + file_decoration

        file_decoration = namegen.apply(file_decoration) + suffix
        if hasattr(os, 'statvfs'):
            max_name_len = os.statvfs(path).f_namemax
            file_decoration = file_decoration[:max_name_len - 5]

        if add_number:
            basecount = get_next_sequence_number(path, basename)