From 803502089e5ada82a05c3816a4a8ef14c7d9bdb2 Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Sun, 22 Aug 1999 21:50:12 +0000 Subject: unpack tuple --- text.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'text.py') 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): -- cgit