~brendan-donegan/checkbox/legacy-release

« back to all changes in this revision

Viewing changes to checkbox-old/checkbox/parsers/submission.py

"Moving around of a __version__ attribute that was requested by PES infrastructure. [r=zkrynicki][bug=][author=roadmr]"

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
18
18
#
19
19
 
20
 
# The version is an incrementing number, if the version changes it means
21
 
# one of the parser's components has changed and may produce different
22
 
# device data for a given submission.
23
 
# This should be updated manually when a parser component changes, note
24
 
# that this includes changes to any module under checkbox.parsers that is
25
 
# used by this one (see imports below)
26
 
__version__ = '2'
27
 
 
28
20
try:
29
21
    import xml.etree.cElementTree as etree
30
22
except ImportError: