diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-09 18:07:44 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-09 18:07:44 +0100 |
commit | 7d434f1f5fdfc64c0384ae402e588bf0315ce701 (patch) | |
tree | c830ae9ee945035f9f1ba25224f13aacf7fc5350 /portato/gui/windows | |
parent | bc41d3c03f0ba278e08bc0d828d769148fc617c1 (diff) | |
parent | 58e5f45f4c1f254e626e144c52ff527fcf8b0b59 (diff) | |
download | portato-7d434f1f5fdfc64c0384ae402e588bf0315ce701.tar.gz portato-7d434f1f5fdfc64c0384ae402e588bf0315ce701.tar.bz2 portato-7d434f1f5fdfc64c0384ae402e588bf0315ce701.zip |
Fix bug #15
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): |