Skip to content

Commit

Permalink
Merge pull request #162 from snyk/fix/poetry-error
Browse files Browse the repository at this point in the history
fix: (poetry) capture error message
  • Loading branch information
admons authored Aug 31, 2021
2 parents fefb80e + 6580387 commit d4f6396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dependencies/poetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export async function getPoetryDependencies(
};
} catch (error) {
throw new Error(
'Error processing poetry project. ' + error.message || error
'Error processing poetry project. ' + (error.message || error)
);
}
}

0 comments on commit d4f6396

Please sign in to comment.