diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-12-18 17:03:16 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-12-18 17:03:16 +0000 |
commit | ce837862be5bdc9a31549f35c72556ee683be29c (patch) | |
tree | 7e4a5c88733c4905412fc8597dd867b7e13ec050 /tests | |
parent | f7f84fab4d026d94ca9f533e6b15ff552f5755b0 (diff) | |
download | sos-ce837862be5bdc9a31549f35c72556ee683be29c.tar.gz |
Fix import statement in archives_test.py
Diffstat (limited to 'tests')
-rw-r--r-- | tests/archive_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/archive_tests.py b/tests/archive_tests.py index 7f4d95e1..f26548e3 100644 --- a/tests/archive_tests.py +++ b/tests/archive_tests.py @@ -5,7 +5,7 @@ import os import tarfile import zipfile -from sos.utilities import TarFileArchive, ZipFileArchive +from sos.archive import TarFileArchive, ZipFileArchive class ZipFileArchiveTest(unittest.TestCase): |