Merged Rolf Schmidt's illysam branch
[hooke.git] / hooke / driver / csvdriver.py
similarity index 87%
rename from drivers/csvdriver.py
rename to hooke/driver/csvdriver.py
index 0d385b4fb3ecbac921cf982a3421b214f885aee4..89ff5ff52022430b104476196770f5f648ad023b 100644 (file)
@@ -1,21 +1,13 @@
-#!/usr/bin/env python
+# Copyright
 
-'''
-csvdriver.py
-
-Simple driver to read general comma-separated values in Hooke
+"""Simple driver to read general comma-separated values in Hooke
 
 Columns are read this way:
 
 X1 , Y1 , X2 , Y2 , X3 , Y3 ...
 
 If the number of columns is odd, the last column is ignored.
-
-Copyright 2008 by Massimo Sandal
-with modifications by Dr. Rolf Schmidt (Concordia University, Canada)
-
-This program is released under the GNU General Public License version 2.
-'''
+"""
 
 import csv
 import os.path
@@ -82,4 +74,3 @@ class csvdriverDriver(lib.driver.Driver):
             return True
         else:
             return False
-