From: Nikos Skalkotos Date: Fri, 16 Mar 2012 17:21:12 +0000 (+0200) Subject: Fix wrong variable name in progress_callback X-Git-Tag: v0.1~130 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/c54fc0e88e6e5297df4551938f2aaa967dea2ee1 Fix wrong variable name in progress_callback --- diff --git a/image_creator/disk.py b/image_creator/disk.py index 9476dc5..f117e80 100644 --- a/image_creator/disk.py +++ b/image_creator/disk.py @@ -174,12 +174,10 @@ class DiskDevice(object): position = array[2] total = array[3] - assert self.progress_bar is not None - print 'posisition/total: %s/%s' % (position, total) - self.progress_bar.send((position * 100)//total) + self.progressbar.send((position * 100)//total) if position == total: - self.progress_bar = None + self.progressbar = None def mount(self): """Mount all disk partitions in a correct order."""