Skip to content

Commit

Permalink
Fix order of arguments to blockdev.thsnapshotcreate.
Browse files Browse the repository at this point in the history
Related: rhbz#1113207
  • Loading branch information
dwlehman committed Jun 24, 2015
1 parent f9dd3a3 commit 909a7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blivet/devices/lvm.py
Expand Up @@ -1262,7 +1262,7 @@ def _create(self):
# to use
pool_name = self.pool.lvname

blockdev.lvm.thsnapshotcreate(self.vg.name, self._name, self.origin.lvname,
blockdev.lvm.thsnapshotcreate(self.vg.name, self.origin.lvname, self._name,
pool_name=pool_name)

def _postCreate(self):
Expand Down

0 comments on commit 909a7c2

Please sign in to comment.