bin/qgpibplotter

Sun, 03 Feb 2008 23:39:27 +0100

author
David Douard <david.douard@logilab.fr>
date
Sun, 03 Feb 2008 23:39:27 +0100
changeset 35
3b7a38af5c42
parent 32
59da528bc470
child 40
1bbea188a7e5
permissions
-rwxr-xr-x

Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.

#!/usr/bin/python
import sys, os
try:
    from plotter.qgpib_plotter import main
except ImportError:
    sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
    from plotter.qgpib_plotter import main
main()

mercurial