From 946a8c5baa6571779e51460530ff3358782eb996 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 19 Dec 2024 18:02:29 +0000 Subject: [PATCH] u2c: fix windowtitle --- bin/u2c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/u2c.py b/bin/u2c.py index e8fe4ad2..78d426f2 100755 --- a/bin/u2c.py +++ b/bin/u2c.py @@ -1103,7 +1103,7 @@ class Ctl(object): nleft = self.nfiles - self.up_f tail = "\033[K\033[u" if VT100 and not self.ar.ns else "\r" - t = "%s eta @ %s/s, %s, %d# left\033[K" % (self.eta, spd, sleft, nleft) + t = "%s eta @ %s/s, %s, %d# left" % (self.eta, spd, sleft, nleft) if not self.hash_b: t = " now hashing..." eprint(txt + "\033]0;{0}\033\\\r{0}{1}".format(t, tail))