Skip to content

Commit

Permalink
Added check for the version of Gnuplot.
Browse files Browse the repository at this point in the history
Must be 1.8
  • Loading branch information
Nicolas Catania committed Oct 20, 2009
1 parent 906d825 commit d989a8e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/sdcard/plot_sdcard.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,4 +328,7 @@ def main(argv):


if __name__ == '__main__':
if Gnuplot.__version__ != "1.8":
print "Gnuplot should be 1.8. See REAME file"
sys.exit(2)
main(sys.argv)

0 comments on commit d989a8e

Please sign in to comment.