[PATCH 3/4] Fix an undefined variable error (#867129).

Chris Lumens clumens at redhat.com
Fri Dec 14 18:38:37 UTC 2012


---
 pyanaconda/storage/devices.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyanaconda/storage/devices.py b/pyanaconda/storage/devices.py
index 07387c4..b879262 100644
--- a/pyanaconda/storage/devices.py
+++ b/pyanaconda/storage/devices.py
@@ -4120,7 +4120,7 @@ class BTRFSVolumeDevice(BTRFSDevice):
         for name, subvol in self.subvolumes:
             if subvol.exists:
                 continue
-            subvolume.create(mountpoint=self._temp_dir_prefix)
+            subvol.create(mountpoint=self._temp_dir_prefix)
         self._undo_temp_mount()
 
     def removeSubVolume(self, name):
-- 
1.7.11.2



More information about the anaconda-patches mailing list