Skip to content

Commit

Permalink
Fixed merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
biermeester committed Sep 5, 2013
2 parents 0dd8f8d + c9a1be5 commit 4e2ca28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pylinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def is_enabled(self):
class PylintThread(threading.Thread):
""" This class creates a seperate thread to run Pylint in """
def __init__(self, view, pbin, ppath, cwd, lpath, lrc, ignore,
disable_msgs):
disable_msgs, extra_pylint_args):
self.view = view
# Grab the file name here, since view cannot be accessed
# from anywhere but the main application thread
Expand All @@ -350,6 +350,7 @@ def __init__(self, view, pbin, ppath, cwd, lpath, lrc, ignore,
self.pylint_rc = lrc
self.ignore = ignore
self.disable_msgs = disable_msgs
self.extra_pylint_args = extra_pylint_args

threading.Thread.__init__(self)

Expand Down

0 comments on commit 4e2ca28

Please sign in to comment.