summaryrefslogtreecommitdiff
path: root/virtManager/createpool.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2015-06-21 15:47:31 -0400
committerCole Robinson <crobinso@redhat.com>2015-06-21 15:47:31 -0400
commit34db1af7b661b7eb5df4c71fc910d31c1ae9f7a4 (patch)
tree8c47429fec360998048775f8c53bf4ad64bf9ff3 /virtManager/createpool.py
parentfc93e154dc522a997689fbb370eac2d87f80b146 (diff)
downloadvirt-manager-34db1af7b661b7eb5df4c71fc910d31c1ae9f7a4.tar.gz
createpool: Fix adding iscsi pools (bz 1231558)
Diffstat (limited to 'virtManager/createpool.py')
-rw-r--r--virtManager/createpool.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/virtManager/createpool.py b/virtManager/createpool.py
index bd18d436..1eaa8059 100644
--- a/virtManager/createpool.py
+++ b/virtManager/createpool.py
@@ -479,9 +479,11 @@ class vmmCreatePool(vmmGObjectUI):
source_list = self.widget("pool-source-path")
target_list = self.widget("pool-target-path")
- pool = uiutil.get_list_selection(source_list, column=2)
+ pool = uiutil.get_list_selection(source_list, column=2,
+ check_entry=False)
if pool is None:
- pool = uiutil.get_list_selection(target_list, column=2)
+ pool = uiutil.get_list_selection(target_list, column=2,
+ check_entry=False)
return pool