Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/linkbutton.py
diff options
context:
space:
mode:
authorSascha Silbe <silbe@activitycentral.com>2011-05-21 12:12:10 (GMT)
committer Sascha Silbe <silbe@activitycentral.com>2011-05-21 12:24:25 (GMT)
commit14da529ec77941a93ed3066ed02a10113ffe31d5 (patch)
tree8e9e741410c0d0d3a08296143a1f40f5ac2a7bbd /linkbutton.py
parent7964449b0be7f941a533013b558a404db7873398 (diff)
fix PEP8 whitespace issues
Signed-off-by: Sascha Silbe <silbe@activitycentral.com>
Diffstat (limited to 'linkbutton.py')
-rw-r--r--linkbutton.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/linkbutton.py b/linkbutton.py
index 3247c7b..4a0a18f 100644
--- a/linkbutton.py
+++ b/linkbutton.py
@@ -32,7 +32,7 @@ class LinkButton(TrayButton, gobject.GObject):
__gtype_name__ = 'LinkButton'
__gsignals__ = {
'remove_link': (gobject.SIGNAL_RUN_FIRST,
- gobject.TYPE_NONE, ([str]))
+ gobject.TYPE_NONE, ([str])),
}
def __init__(self, url, buf, color, title, owner, index, hash):
@@ -40,7 +40,7 @@ class LinkButton(TrayButton, gobject.GObject):
self.set_image(buf, color.split(',')[1], color.split(',')[0])
self.hash = hash
- info = title +'\n'+ owner
+ info = title + '\n' + owner
self.setup_rollover_options(info)
def set_image(self, buf, fill='#0000ff', stroke='#4d4c4f'):