Skip to content

Commit

Permalink
chore: simplify pep440 invalid value warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed May 15, 2021
1 parent a2a6ac9 commit 2719505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/versioning/pep440/range.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function getNewValue({
}
const ranges: Range[] = parseRange(currentValue);
if (!ranges) {
logger.warn('Invalid currentValue: ' + currentValue);
logger.warn({ currentValue }, 'Invalid pep440 currentValue');
return null;
}
if (!ranges.length) {
Expand Down

0 comments on commit 2719505

Please sign in to comment.