From d989a8e37771a2f97b1c6ec45f29bb1bc94e7299 Mon Sep 17 00:00:00 2001 From: Nicolas Catania Date: Tue, 20 Oct 2009 08:21:47 -0700 Subject: [PATCH] Added check for the version of Gnuplot. Must be 1.8 --- tests/sdcard/plot_sdcard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/sdcard/plot_sdcard.py b/tests/sdcard/plot_sdcard.py index 246d7f50..0959465c 100755 --- a/tests/sdcard/plot_sdcard.py +++ b/tests/sdcard/plot_sdcard.py @@ -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) -- 2.11.0