aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/update.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-03-01 19:51:39 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2025-03-01 19:51:39 -0500
commit889c7b8caec8fc0b9c7a583ed1d9cfa43518fc42 (patch)
treecff4a7de7032843e4efe521d92dfce485ae944f1 /gallery_dl/update.py
parenta26df18796ff4e506b16bf32fcec9336233b9e2e (diff)
New upstream version 1.29.0.upstream/1.29.0
Diffstat (limited to 'gallery_dl/update.py')
-rw-r--r--gallery_dl/update.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/gallery_dl/update.py b/gallery_dl/update.py
index b068e37..6650ec4 100644
--- a/gallery_dl/update.py
+++ b/gallery_dl/update.py
@@ -12,7 +12,7 @@ import sys
from .extractor.common import Extractor, Message
from .job import DownloadJob
-from . import util, version, exception
+from . import util, version, output, exception
REPOS = {
"stable" : "mikf/gallery-dl",
@@ -23,14 +23,14 @@ REPOS = {
BINARIES_STABLE = {
"windows" : "gallery-dl.exe",
- "windows_x86": "gallery-dl.exe",
"windows_x64": "gallery-dl.exe",
+ "windows_x86": "gallery-dl_x86.exe",
"linux" : "gallery-dl.bin",
}
BINARIES_DEV = {
"windows" : "gallery-dl_windows.exe",
- "windows_x86": "gallery-dl_windows_x86.exe",
"windows_x64": "gallery-dl_windows.exe",
+ "windows_x86": "gallery-dl_windows_x86.exe",
"linux" : "gallery-dl_linux",
"macos" : "gallery-dl_macos",
}
@@ -143,13 +143,13 @@ class UpdateJob(DownloadJob):
def _warning(self, msg, *args):
if self._newline:
self._newline = False
- print()
+ output.stderr_write("\n")
self.extractor.log.warning(msg, *args)
def _error(self, msg, *args):
if self._newline:
self._newline = False
- print()
+ output.stderr_write("\n")
self.status |= 1
self.extractor.log.error(msg, *args)