diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-06-27 17:20:59 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-06-27 17:20:59 -0400 |
commit | 0fe7db62cdd2c1395733005f6a3eef02aa720552 (patch) | |
tree | 55431100685693af3509ee523ad90273b31b58e5 /tests | |
parent | ece3872d095c303e882fc74384dc34c37b250511 (diff) | |
download | cryptography-0fe7db62cdd2c1395733005f6a3eef02aa720552.tar.gz cryptography-0fe7db62cdd2c1395733005f6a3eef02aa720552.tar.bz2 cryptography-0fe7db62cdd2c1395733005f6a3eef02aa720552.zip |
fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index 5a3f475b..8be5c1fa 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -396,7 +396,8 @@ def load_fips_dsa_key_pair_vectors(vector_data): continue elif line.startswith("[mod = L=3072"): continue - elif reading_key_data: + + if reading_key_data: if line.startswith("P"): vectors.append({'p': int(line.split("=")[1], 16)}) elif line.startswith("Q"): |