Skip to content

Commit

Permalink
Merge pull request graalvm#48 from dougxc/fix-pylint
Browse files Browse the repository at this point in the history
remove unnecessary quoting for args to "git ls-files" invocation
  • Loading branch information
dougxc committed Feb 15, 2016
2 parents 3d14091 + c540ee3 commit 06ec63b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3593,7 +3593,6 @@ def locate(self, vcdir, patterns=None, abortOnError=True):
patterns = []
elif not isinstance(patterns, list):
patterns = [patterns]
patterns = ['"{0}"'.format(pattern) for pattern in patterns]
out = LinesOutputCapture()
rc = self.run(['git', 'ls-files'] + patterns, cwd=vcdir, out=out, nonZeroIsFatal=False)
if rc == 0:
Expand Down Expand Up @@ -12331,7 +12330,7 @@ def alarm_handler(signum, frame):
# no need to show the stack trace when the user presses CTRL-C
abort(1)

version = VersionSpec("5.7.0")
version = VersionSpec("5.7.1")

currentUmask = None

Expand Down

0 comments on commit 06ec63b

Please sign in to comment.