From: Dohyung Kim Date: Fri, 28 Apr 2017 02:33:06 +0000 (+0900) Subject: change installed package name length from 20 to 50 X-Git-Tag: accepted/tizen/devbase/tools/20191220.065431^2~61^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6c1130869719dd836b548ade96d0ecd7b52aced;p=tools%2Fmic.git change installed package name length from 20 to 50 Signed-off-by: Dohyung Kim Change-Id: If521e359f5bf13893dcd3f9c6885c8cdce0f8667 --- diff --git a/mic/utils/rpmmisc.py b/mic/utils/rpmmisc.py index a3b166c..f2e5585 100644 --- a/mic/utils/rpmmisc.py +++ b/mic/utils/rpmmisc.py @@ -75,10 +75,10 @@ class RPMInstallCallback: fmt_bar = "%-" + width + "s" if progress: bar = fmt_bar % (self.mark * int(marks * (percent / 100.0)), ) - fmt = "%-10.10s: %-20.20s " + bar + " " + done + fmt = "%-10.10s: %-50.50s " + bar + " " + done else: bar = fmt_bar % (self.mark * marks, ) - fmt = "%-10.10s: %-20.20s " + bar + " " + done + fmt = "%-10.10s: %-50.50s " + bar + " " + done return fmt def _logPkgString(self, hdr):