Browse Source

Update sargraph.py

Expect gnuplot 5.0 not 5.2
check-vt100
Peter Gielda 6 years ago committed by GitHub
parent
commit
bdf5763c60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      sargraph.py

2
sargraph.py

@ -37,7 +37,7 @@ except:
print("Error: Gnuplot not found")
sys.exit(1)
VERSION_EXPECTED = [5, 2]
VERSION_EXPECTED = [5, 0]
version = p.stdout.readline().decode().split(" ")[1].split(".")
if (int(version[0]) < VERSION_EXPECTED[0]):

Loading…
Cancel
Save