summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/package_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils/package_manager.py')
-rw-r--r--meta/lib/oeqa/utils/package_manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/package_manager.py b/meta/lib/oeqa/utils/package_manager.py
index 3623299295..6b67f22fdd 100644
--- a/meta/lib/oeqa/utils/package_manager.py
+++ b/meta/lib/oeqa/utils/package_manager.py
@@ -117,7 +117,7 @@ def extract_packages(d, needed_packages):
117 extract = package.get('extract', True) 117 extract = package.get('extract', True)
118 118
119 if extract: 119 if extract:
120 #logger.debug(1, 'Extracting %s' % pkg) 120 #logger.debug('Extracting %s' % pkg)
121 dst_dir = os.path.join(extracted_path, pkg) 121 dst_dir = os.path.join(extracted_path, pkg)
122 # Same package used for more than one test, 122 # Same package used for more than one test,
123 # don't need to extract again. 123 # don't need to extract again.
@@ -130,7 +130,7 @@ def extract_packages(d, needed_packages):
130 shutil.rmtree(pkg_dir) 130 shutil.rmtree(pkg_dir)
131 131
132 else: 132 else:
133 #logger.debug(1, 'Copying %s' % pkg) 133 #logger.debug('Copying %s' % pkg)
134 _copy_package(d, pkg) 134 _copy_package(d, pkg)
135 135
136def _extract_in_tmpdir(d, pkg): 136def _extract_in_tmpdir(d, pkg):