summaryrefslogtreecommitdiff
path: root/portato/gui/windows/main.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-02-09 18:07:44 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-02-09 18:07:44 +0100
commit7d434f1f5fdfc64c0384ae402e588bf0315ce701 (patch)
treec830ae9ee945035f9f1ba25224f13aacf7fc5350 /portato/gui/windows/main.py
parentbc41d3c03f0ba278e08bc0d828d769148fc617c1 (diff)
parent58e5f45f4c1f254e626e144c52ff527fcf8b0b59 (diff)
downloadportato-7d434f1f5fdfc64c0384ae402e588bf0315ce701.tar.gz
portato-7d434f1f5fdfc64c0384ae402e588bf0315ce701.tar.bz2
portato-7d434f1f5fdfc64c0384ae402e588bf0315ce701.zip
Fix bug #15
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r--portato/gui/windows/main.py2
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):