diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-22 21:50:12 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-22 21:50:12 +0000 |
commit | 803502089e5ada82a05c3816a4a8ef14c7d9bdb2 (patch) | |
tree | 7ce1da476961fcda3f0edc5df7650b91081f9d49 /text.py | |
parent | a546de10cfaa169b05891efd9357aedfb7b8cf25 (diff) | |
download | anaconda-803502089e5ada82a05c3816a4a8ef14c7d9bdb2.tar.gz anaconda-803502089e5ada82a05c3816a4a8ef14c7d9bdb2.tar.xz anaconda-803502089e5ada82a05c3816a4a8ef14c7d9bdb2.zip |
unpack tuple
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -392,12 +392,11 @@ class PartitionWindow: drives = todo.drives.available ().keys () drives.sort () todo.ddruid = fsedit(0, drives, fstab) - dir = todo.ddruid.edit () + (dir, ) = todo.ddruid.edit () for partition, mount, fstype, size in todo.ddruid.getFstab (): todo.addMount(partition, mount, fstype) - - return dir + return dir class FormatWindow: def __call__(self, screen, todo): |