Skip to content

Commit

Permalink
Fix #19
Browse files Browse the repository at this point in the history
  • Loading branch information
rampage644 committed Oct 27, 2014
1 parent f22024e commit 224c62f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rtags.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ def run(self):
self.p = None

def stop(self):
self.p.kill()
self.p = None
if self.is_alive():
self.p.kill()
self.p = None


def get_view_text(view):
Expand Down

0 comments on commit 224c62f

Please sign in to comment.