Skip to content

Commit

Permalink
Fix the typo (#184)
Browse files Browse the repository at this point in the history
Signed-off-by: Jiyeong Seok <[email protected]>
  • Loading branch information
dd-jy authored Dec 27, 2023
1 parent a0cfadb commit 3809c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fosslight_dependency/package_manager/Npm.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def parse_transitive_relationship(self):
err_msg = ''

cmd = 'npm ls -a --omit=dev --json -s'
result = subprocess.run(cmd, shell=True, capture_output=True, text=True, encoidng='utf-8')
result = subprocess.run(cmd, shell=True, capture_output=True, text=True, encoding='utf-8')
rel_tree = result.stdout
if rel_tree is None:
logger.error(f"It returns the error: {cmd}")
Expand Down

0 comments on commit 3809c5d

Please sign in to comment.