Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 721018 | Differences between
and this patch

Collapse All | Expand All

(-)hplip-3.20.5_orig/base/utils.py (-2 / +2 lines)
Lines 285-292 Link Here
285
                        except ValueError:
285
                        except ValueError:
286
                            yield fullname
286
                            yield fullname
287
287
288
        #if os.path.islink(fullname):
288
        if os.path.islink(fullname) and os.path.isdir(os.readlink(fullname)):
289
        #    fullname = os.path.realpath(os.readlink(fullname))
289
           break
290
290
291
        if recurse and os.path.isdir(fullname): # or os.path.islink(fullname):
291
        if recurse and os.path.isdir(fullname): # or os.path.islink(fullname):
292
            for f in walkFiles(fullname, recurse, abs_paths, return_folders, pattern, path):
292
            for f in walkFiles(fullname, recurse, abs_paths, return_folders, pattern, path):

Return to bug 721018