From 8ac5529a0343038fcc80e1a374beeae6a0a45266 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Thu, 8 Jul 2021 14:17:25 -0700 Subject: [PATCH] Update call to windows_helper to win_reg Signed-off-by: Jono Yang --- scanpipe/pipes/windows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scanpipe/pipes/windows.py b/scanpipe/pipes/windows.py index 69fb7c9b9..2dcf6fd13 100644 --- a/scanpipe/pipes/windows.py +++ b/scanpipe/pipes/windows.py @@ -20,13 +20,13 @@ # ScanCode.io is a free software code scanning tool from nexB Inc. and others. # Visit https://github.com/nexB/scancode.io for support and download. -from packagedcode import windows_helpers +from packagedcode import win_reg def package_getter(root_dir, **kwargs): """ Yield installed package objects. """ - packages = windows_helpers.get_installed_programs(root_dir) + packages = win_reg.get_installed_packages(root_dir) for package in packages: yield package.purl, package