Skip to content

Commit

Permalink
Add missing b'' qualifier from da63cb0.
Browse files Browse the repository at this point in the history
BUG=gyp:36
[email protected]

Change-Id: I913ea5b1e0fd7a63d9c0fe93c9260beb0d233080
Reviewed-on: https://chromium-review.googlesource.com/c/external/gyp/+/1635221
Reviewed-by: Mark Mentovai <[email protected]>
  • Loading branch information
dpranke committed May 29, 2019
1 parent da63cb0 commit 4f1618a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/gyp/xcode_emulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@ def GetStdout(cmdlist):
if job.returncode != 0:
sys.stderr.write(out + b'\n')
raise GypError('Error %d running %s' % (job.returncode, cmdlist[0]))
return out.rstrip('\n')
return out.rstrip(b'\n')


def MergeGlobalXcodeSettingsToSpec(global_dict, spec):
Expand Down

0 comments on commit 4f1618a

Please sign in to comment.