Skip to content

Commit

Permalink
bugfix tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
SnowMB committed Aug 4, 2018
1 parent 5f1fdfb commit 1943a2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def handle(self, event):
self.isWaiting = True #trigger the work just once (multiple events get fired)
self.timer = threading.Timer(2, self.doTheWork)
self.timer.start()

def doTheWork(self):
print('DEBUG : starting the work')
domains = createCerts(self.args)
Expand All @@ -204,7 +204,7 @@ def doTheWork(self):

with self.lock:
self.isWaiting = False
print('DEBUG : finished')
print('DEBUG : finished')


if __name__ == "__main__":
Expand Down

0 comments on commit 1943a2d

Please sign in to comment.