Skip to content

Commit

Permalink
Remove rstrip from package_record_to_requirements
Browse files Browse the repository at this point in the history
The replaced code did not rstrip, so let us keep it that way for now.

Signed-off-by: Marcel Bargull <[email protected]>
  • Loading branch information
mbargull committed Jan 26, 2024
1 parent e98e96d commit 6a5359a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_build/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2199,4 +2199,4 @@ def samefile(path1: Path, path2: Path) -> bool:


def package_record_to_requirement(prec: PackageRecord) -> str:
return f"{prec.name} {prec.version} {prec.build}".rstrip()
return f"{prec.name} {prec.version} {prec.build}"

0 comments on commit 6a5359a

Please sign in to comment.