diff options
| author | 2025-08-17 20:18:19 -0400 | |
|---|---|---|
| committer | 2025-08-17 20:18:19 -0400 | |
| commit | 3c1539bde1b47fff0ba81c9d92801fa700fedc3b (patch) | |
| tree | 50975f87c1901120c4592e342248937c8221251d /gallery_dl/output.py | |
| parent | 3d18761f620a294ea6c5bff13c5994b93b29f3ed (diff) | |
New upstream version 1.30.4.upstream/1.30.4
Diffstat (limited to 'gallery_dl/output.py')
| -rw-r--r-- | gallery_dl/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gallery_dl/output.py b/gallery_dl/output.py index 519a8f4..9e0888b 100644 --- a/gallery_dl/output.py +++ b/gallery_dl/output.py @@ -118,7 +118,7 @@ class PathfmtProxy(): def __getattribute__(self, name): pathfmt = object.__getattribute__(self, "job").pathfmt - return pathfmt.__dict__.get(name) if pathfmt else None + return getattr(pathfmt, name, None) if pathfmt else None def __str__(self): if pathfmt := object.__getattribute__(self, "job").pathfmt: |
