diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-09 17:49:16 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-09 17:49:16 +0100 |
commit | d6cbb904419bb5e5c0efcf2bf6cef40f52be94e6 (patch) | |
tree | e22767bf337e0a6f33bf0f658cb31784db2c0637 /portato/gui/windows/main.py | |
parent | bc41d3c03f0ba278e08bc0d828d769148fc617c1 (diff) | |
download | portato-d6cbb904419bb5e5c0efcf2bf6cef40f52be94e6.tar.gz portato-d6cbb904419bb5e5c0efcf2bf6cef40f52be94e6.tar.bz2 portato-d6cbb904419bb5e5c0efcf2bf6cef40f52be94e6.zip |
Change 'split(" ")' to single 'split()' to also catch multiple spaces and tabs
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |