summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-22 21:50:12 +0000
committerMatt Wilson <msw@redhat.com>1999-08-22 21:50:12 +0000
commit803502089e5ada82a05c3816a4a8ef14c7d9bdb2 (patch)
tree7ce1da476961fcda3f0edc5df7650b91081f9d49 /text.py
parenta546de10cfaa169b05891efd9357aedfb7b8cf25 (diff)
downloadanaconda-803502089e5ada82a05c3816a4a8ef14c7d9bdb2.tar.gz
anaconda-803502089e5ada82a05c3816a4a8ef14c7d9bdb2.tar.xz
anaconda-803502089e5ada82a05c3816a4a8ef14c7d9bdb2.zip
unpack tuple
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/text.py b/text.py
index bc930f47d..1a6e5381b 100644
--- a/text.py
+++ b/text.py
@@ -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):