diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2021-01-14 13:31:38 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2021-01-14 14:31:04 +0100 |
commit | ae73548cf705d2c603b6f1d7f9a140940def837c (patch) | |
tree | 0157642befa6435188595eddf5c3bd769b964857 /tests/test_rsa.py | |
parent | 5541bb16cec1623be63188f25048cdb75ab26843 (diff) | |
download | m2crypto-ae73548cf705d2c603b6f1d7f9a140940def837c.tar.gz |
Replace 'from . import' with absolute imports.
Diffstat (limited to 'tests/test_rsa.py')
-rw-r--r-- | tests/test_rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_rsa.py b/tests/test_rsa.py index 21f7577..3de5016 100644 --- a/tests/test_rsa.py +++ b/tests/test_rsa.py @@ -10,7 +10,7 @@ import logging import os from M2Crypto import BIO, RSA, Rand, X509, m2, six -from . import unittest +from tests import unittest from tests.fips import fips_mode log = logging.getLogger('test_RSA') |