Skip to content

Commit

Permalink
Fix an undefined variable in writeStorageLate
Browse files Browse the repository at this point in the history
  • Loading branch information
dashea committed Jul 7, 2015
1 parent aeb5f7d commit 4c05a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyanaconda/packaging/__init__.py
Expand Up @@ -625,7 +625,7 @@ def writeStorageLate(self):
self.storage.umountFilesystems()

# Explicitly mount the root on the physical sysroot
rootmnt = storage.mountpoints.get('/')
rootmnt = self.storage.mountpoints.get('/')
rootmnt.setup()
rootmnt.format.setup(options=rootmnt.format.options, chroot=iutil.getTargetPhysicalRoot())

Expand Down

0 comments on commit 4c05a81

Please sign in to comment.