diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2022-05-30 20:34:17 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2022-05-30 20:34:17 -0700 |
commit | efa29410a1ae8194c9d40866a2c893d414639d5b (patch) | |
tree | 5bf5cb5370ba9820f90b67ef3f14c3239992d70a | |
parent | main.py: Fix bug 600572 Remove SYNC variable usage (diff) | |
download | mirrorselect-efa29410a1ae8194c9d40866a2c893d414639d5b.tar.gz mirrorselect-efa29410a1ae8194c9d40866a2c893d414639d5b.tar.bz2 mirrorselect-efa29410a1ae8194c9d40866a2c893d414639d5b.zip |
selectors.py: Fix bug 698528 clear screen on dialog exit
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
-rw-r--r-- | mirrorselect/selectors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mirrorselect/selectors.py b/mirrorselect/selectors.py index 35051ee..1b1312c 100644 --- a/mirrorselect/selectors.py +++ b/mirrorselect/selectors.py @@ -571,6 +571,7 @@ class Interactive(object): self.urls = out.splitlines() + sys.stderr.write("\x1b[2J\x1b[H") if self.urls: if hasattr(self.urls[0], 'decode'): self.urls = decode_selection( |