diff options
| author | 2025-05-05 01:18:58 -0400 | |
|---|---|---|
| committer | 2025-05-05 01:18:58 -0400 | |
| commit | c679cd7a13bdbf6896e53d68fe2093910bc6625a (patch) | |
| tree | 6047abcc55283d7e631b7a73039865417a303428 /gallery_dl/extractor/deviantart.py | |
| parent | 4a18b5837c1dd82f5964afcfc3fecc53cd97e79c (diff) | |
New upstream version 1.29.6.upstream/1.29.6
Diffstat (limited to 'gallery_dl/extractor/deviantart.py')
| -rw-r--r-- | gallery_dl/extractor/deviantart.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gallery_dl/extractor/deviantart.py b/gallery_dl/extractor/deviantart.py index ae475e2..37f57fe 100644 --- a/gallery_dl/extractor/deviantart.py +++ b/gallery_dl/extractor/deviantart.py @@ -868,7 +868,9 @@ x2="45.4107524%" y2="71.4898596%" id="app-root-3">\ yield self.api.deviation(deviation_uuid) def _unescape_json(self, json): - return json.replace('\\"', '"').replace("\\\\", "\\") + return json.replace('\\"', '"') \ + .replace("\\'", "'") \ + .replace("\\\\", "\\") class DeviantartUserExtractor(DeviantartExtractor): |
