[gedit-plugins] Remove stray semicolons



commit ef4be52d82ebd593893a74a78176e7211a1836ea
Author: Paolo Borelli <pborelli gnome org>
Date:   Sat Mar 1 20:56:38 2014 +0100

    Remove stray semicolons

 plugins/git/git/windowactivatable.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/plugins/git/git/windowactivatable.py b/plugins/git/git/windowactivatable.py
index 3513165..c8ade3c 100644
--- a/plugins/git/git/windowactivatable.py
+++ b/plugins/git/git/windowactivatable.py
@@ -17,7 +17,7 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330,
 #  Boston, MA 02111-1307, USA.
 
-from gi.repository import GLib, GObject, Gio, Gtk, Gedit, Ggit
+from gi.repository import GLib, GObject, Gio, Gedit, Ggit
 
 import weakref
 
@@ -79,7 +79,7 @@ class GitWindowActivatable(GObject.Object, Gedit.WindowActivatable):
                              self.deleted, None)
         ]
 
-        self.refresh();
+        self.refresh()
 
     def do_deactivate(self):
         self.clear_monitors()
@@ -97,7 +97,7 @@ class GitWindowActivatable(GObject.Object, Gedit.WindowActivatable):
         self.window_signals = []
         self.bus_signals = []
 
-        self.refresh();
+        self.refresh()
 
     def refresh(self):
         if self.bus.is_registered('/plugins/filebrowser', 'refresh'):
@@ -204,7 +204,7 @@ class GitWindowActivatable(GObject.Object, Gedit.WindowActivatable):
             if status is None or git_status & Ggit.StatusFlags.IGNORED:
                 status = git_status
 
-        markup = GLib.markup_escape_text(self.file_names[location.get_uri()]) 
+        markup = GLib.markup_escape_text(self.file_names[location.get_uri()])
 
         if status is not None:
             if status & Ggit.StatusFlags.INDEX_NEW or \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]