Skip to content

Commit

Permalink
Fix typo in gypv8sh debugging code
Browse files Browse the repository at this point in the history
BUG=none
TBR=marja@chromium.org

Review URL: https://codereview.chromium.org/375273002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281998 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
jochen@chromium.org committed Jul 9, 2014
1 parent 0d9fb0e commit 2b56d35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/gypv8sh.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def main ():
if p.returncode:
# TODO(jochen): Remove once crbug.com/370551 is resolved.
if sys.platform == 'darwin':
cmd[:0] = [
'gdb', '-batch', '-ex', 'run', '-ex' 'bt', '-ex', 'quit', '-args']
cmd[:0] = ['gdb', '-batch', '-ex', 'run', '-ex', 'bt', '-ex', 'quit',
'-args']
p = subprocess.Popen(
cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0)
out, err = p.communicate()
Expand Down

0 comments on commit 2b56d35

Please sign in to comment.