Don't use a no-longer-extant variable.

Change-Id: I41c1a37248335d983da58b0b657a28ec521be290
Reviewed-on: https://code.wireshark.org/review/17378
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-08-29 19:49:58 -07:00
parent 961f743d69
commit 8e9b6f4abe
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def gather_data(tshark):
output, error = proc.communicate()
if proc.returncode != 0:
sys.exit("Failed: " + cmd)
sys.exit("Failed: tshark -G fields")
if sys.version_info[0] >= 3:
output = output.decode('utf-8')