Skip to content

Commit 4e7f1f0

Browse files
authored
Update GdbSlicePrettyPrint.py to work with current arangovpack versions (#167)
1 parent b6d049a commit 4e7f1f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/GdbSlicePrettyPrint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def to_string(self):
126126
b = bytearray(length)
127127
for i in range(0, length):
128128
b[i] = int(vpack[i])
129-
p = subprocess.Popen(["arangovpack", "--print-non-json"],
129+
p = subprocess.Popen(["arangovpack", "--output-type", "json"],
130130
stdin=subprocess.PIPE,
131131
stdout=subprocess.PIPE)
132132
s, e = p.communicate(b)

0 commit comments

Comments
 (0)