From d6cbb904419bb5e5c0efcf2bf6cef40f52be94e6 Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Mon, 9 Feb 2009 17:49:16 +0100 Subject: Change 'split(" ")' to single 'split()' to also catch multiple spaces and tabs --- portato/gui/windows/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portato/gui/windows/main.py') diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 0882c2a..6f7423c 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -162,7 +162,7 @@ class PackageTable: self.linkBox.remove(c) text = pkg.get_package_settings("HOMEPAGE") - texts = text.split(" ") + texts = text.split() ftexts = [] for count, t in enumerate(texts): -- cgit v1.2.3-54-g00ecf