diff options
Diffstat (limited to 'client/bin/autotest_utils.py')
-rwxr-xr-x | client/bin/autotest_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/bin/autotest_utils.py b/client/bin/autotest_utils.py index dae268b8..46281e40 100755 --- a/client/bin/autotest_utils.py +++ b/client/bin/autotest_utils.py @@ -589,7 +589,7 @@ def write_keyval(path, dictionary): # directory name, we assume you want the file to be called keyval if os.path.isdir(path): path = os.path.join(path, 'keyval') - keyval = open(path, 'w') + keyval = open(path, 'a') for key in dictionary.keys(): if re.search(r'\W', key): raise ValueError('Invalid key: ' + key) |