Skip to content

Commit

Permalink
Catch more errors in WorkerQueue
Browse files Browse the repository at this point in the history
See #167
  • Loading branch information
untitaker committed Jan 18, 2015
1 parent 86bcf20 commit 7c08623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vdirsyncer/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ def __init__(self, max_workers):
self._max_workers = max_workers

def _process_job(self):
func = self._queue.get()
try:
func = self._queue.get()
func(wq=self)
except:
if not handle_cli_error():
Expand Down

0 comments on commit 7c08623

Please sign in to comment.