diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-18 21:36:15 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-18 21:36:15 -0500 |
commit | 86e15af8b1c79f49d83b03f0554b075129a09127 (patch) | |
tree | 0d9dbfd2bd5c1617e215fd75d20c2e05b6298a8c /src/redshift-gtk/statusicon.py | |
parent | redshift-gtk: Show errors from child process in a dialog (diff) | |
download | redshift-ng-86e15af8b1c79f49d83b03f0554b075129a09127.tar.gz redshift-ng-86e15af8b1c79f49d83b03f0554b075129a09127.tar.bz2 redshift-ng-86e15af8b1c79f49d83b03f0554b075129a09127.tar.xz |
redshift-gtk: Remove unnecessary semi-colons at end-of-line
Diffstat (limited to 'src/redshift-gtk/statusicon.py')
-rw-r--r-- | src/redshift-gtk/statusicon.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index 36fef9e..aa21750 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -126,25 +126,25 @@ class RedshiftStatusIcon(object): self.status_label = Gtk.Label() self.status_label.set_alignment(0.0, 0.5) - self.status_label.set_padding(6, 6); + self.status_label.set_padding(6, 6) self.info_dialog.get_content_area().pack_start(self.status_label, True, True, 0) self.status_label.show() self.location_label = Gtk.Label() self.location_label.set_alignment(0.0, 0.5) - self.location_label.set_padding(6, 6); + self.location_label.set_padding(6, 6) self.info_dialog.get_content_area().pack_start(self.location_label, True, True, 0) self.location_label.show() self.temperature_label = Gtk.Label() self.temperature_label.set_alignment(0.0, 0.5) - self.temperature_label.set_padding(6, 6); + self.temperature_label.set_padding(6, 6) self.info_dialog.get_content_area().pack_start(self.temperature_label, True, True, 0) self.temperature_label.show() self.period_label = Gtk.Label() self.period_label.set_alignment(0.0, 0.5) - self.period_label.set_padding(6, 6); + self.period_label.set_padding(6, 6) self.info_dialog.get_content_area().pack_start(self.period_label, True, True, 0) self.period_label.show() |