forked from DRMTalks/devine
Change wording from Download Stopped to Download Cancelled
This commit is contained in:
parent
d566aa2547
commit
ce457df151
|
@ -949,7 +949,7 @@ class dl:
|
||||||
progress(downloaded="Downloaded")
|
progress(downloaded="Downloaded")
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
self.DL_POOL_STOP.set()
|
self.DL_POOL_STOP.set()
|
||||||
progress(downloaded="[yellow]STOPPED")
|
progress(downloaded="[yellow]CANCELLED")
|
||||||
raise
|
raise
|
||||||
except Exception:
|
except Exception:
|
||||||
self.DL_POOL_STOP.set()
|
self.DL_POOL_STOP.set()
|
||||||
|
|
|
@ -436,9 +436,9 @@ class DASH:
|
||||||
download_size = download.result()
|
download_size = download.result()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
stop_event.set() # skip pending track downloads
|
stop_event.set() # skip pending track downloads
|
||||||
progress(downloaded="[yellow]STOPPING")
|
progress(downloaded="[yellow]CANCELLING")
|
||||||
pool.shutdown(wait=True, cancel_futures=True)
|
pool.shutdown(wait=True, cancel_futures=True)
|
||||||
progress(downloaded="[yellow]STOPPED")
|
progress(downloaded="[yellow]CANCELLED")
|
||||||
# tell dl that it was cancelled
|
# tell dl that it was cancelled
|
||||||
# the pool is already shut down, so exiting loop is fine
|
# the pool is already shut down, so exiting loop is fine
|
||||||
raise
|
raise
|
||||||
|
|
|
@ -275,9 +275,9 @@ class HLS:
|
||||||
download_size = download.result()
|
download_size = download.result()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
stop_event.set() # skip pending track downloads
|
stop_event.set() # skip pending track downloads
|
||||||
progress(downloaded="[yellow]STOPPING")
|
progress(downloaded="[yellow]CANCELLING")
|
||||||
pool.shutdown(wait=True, cancel_futures=True)
|
pool.shutdown(wait=True, cancel_futures=True)
|
||||||
progress(downloaded="[yellow]STOPPED")
|
progress(downloaded="[yellow]CANCELLED")
|
||||||
# tell dl that it was cancelled
|
# tell dl that it was cancelled
|
||||||
# the pool is already shut down, so exiting loop is fine
|
# the pool is already shut down, so exiting loop is fine
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in New Issue