summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDohyung Kim <dohyung2.kim@samsung.com>2017-04-28 11:33:06 +0900
committerxiaojuan.mao <xiaojuan.mao@samsung.com>2017-07-13 11:19:00 +0800
commit507aa162290dd557baabaf9495f64b3ed1d92f0c (patch)
tree24992d27c562a7f13eb2e4be966f5dae67c214bc
parent6db490fb8e3cda732a3f906471a9c12a041cf8c0 (diff)
downloadmic-507aa162290dd557baabaf9495f64b3ed1d92f0c.tar.gz
mic-507aa162290dd557baabaf9495f64b3ed1d92f0c.tar.bz2
mic-507aa162290dd557baabaf9495f64b3ed1d92f0c.zip
change installed package name length from 20 to 50
Signed-off-by: Dohyung Kim <dohyung2.kim@samsung.com> Change-Id: If521e359f5bf13893dcd3f9c6885c8cdce0f8667
-rw-r--r--mic/utils/rpmmisc.py4
1 files changed, 2 insertions, 2 deletions
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):