ipatests.test_integration.test_caless: Fix mkdir_recursive call

This commit is contained in:
Petr Viktorin
2013-10-03 19:26:03 +02:00
parent 3864760c52
commit 23921f40d9

View File

@@ -100,7 +100,7 @@ class CALessBase(IntegrationTest):
# Copy CRLs over
base = os.path.join(cls.cert_dir, 'nssdb')
host.mkdir_recursive(cls.crl_path)
host.transport.mkdir_recursive(cls.crl_path)
for source in glob.glob(os.path.join(base, '*.crl')):
dest = os.path.join(cls.crl_path, os.path.basename(source))
host.transport.put_file(source, dest)