From c54fc0e88e6e5297df4551938f2aaa967dea2ee1 Mon Sep 17 00:00:00 2001
From: Nikos Skalkotos <skalkoto@grnet.gr>
Date: Fri, 16 Mar 2012 19:21:12 +0200
Subject: [PATCH] Fix wrong variable name in progress_callback

---
 image_creator/disk.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

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."""
-- 
GitLab