diff options
author | Simon Warta <[email protected]> | 2015-12-26 21:48:47 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-18 09:37:41 +0200 |
commit | 6d8104fc2641b6b1cda005d24953bca7009cf27b (patch) | |
tree | 22c8b7db4fcae2e6aa9ffd6732acf91bb78fee9d /src/scripts | |
parent | 49d7d19ac48e240cc3641006c07ec1783292c57b (diff) |
Fix bug in vecparser: member must not be static
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/vecparser.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scripts/vecparser.py b/src/scripts/vecparser.py index 2f59a0ea2..35ee626b8 100644 --- a/src/scripts/vecparser.py +++ b/src/scripts/vecparser.py @@ -2,9 +2,8 @@ from collections import OrderedDict import re class VecDocument: - data = OrderedDict() - def __init__(self, filepath): + self.data = OrderedDict() last_testcase_number = 1 current_testcase_number = 1 current_group_name = "" |