From: Nikos Skalkotos Date: Thu, 14 Jun 2012 08:32:21 +0000 (+0300) Subject: Save bar_type parameter in Output base class X-Git-Tag: v0.1~79 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/0931fbd6d09b3e46d61608cf6d13ec0b0d94faf6 Save bar_type parameter in Output base class --- diff --git a/image_creator/output/__init__.py b/image_creator/output/__init__.py index 3087c9c..99653d3 100644 --- a/image_creator/output/__init__.py +++ b/image_creator/output/__init__.py @@ -58,6 +58,7 @@ class Output(object): class _Progress(object): def __init__(self, size, title, bar_type='default'): self.size = size + self.bar_type = bar_type self.output.output("%s..." % title, False) def goto(self, dest):