Sun, 03 Feb 2008 23:39:27 +0100
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
28
0a7270d439d0
added a start scrip & cleanups
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
1 | #!/usr/bin/python |
35
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
2 | import sys, os |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
3 | try: |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
4 | from plotter.qgpib_plotter import main |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
5 | except ImportError: |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
6 | sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")) |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
7 | from plotter.qgpib_plotter import main |
28
0a7270d439d0
added a start scrip & cleanups
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
8 | main() |