Skip to content

Commit b57eb98

Browse files
committed
Fix accidental debug print in sources command
1 parent 79b8177 commit b57eb98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
### Fixed
9+
- Fixed accidental debug print in `sources` command
810

911
## 0.27.0 - 2023-01-16
1012
### Added

src/cmd/sources.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,6 @@ pub fn run(sess: &Session, matches: &ArgMatches) -> Result<()> {
128128
matches.get_flag("no_deps"),
129129
);
130130

131-
println!("{:?}", matches.contains_id("package"));
132-
133131
if matches.contains_id("package")
134132
|| matches.contains_id("exclude")
135133
|| matches.get_flag("no_deps")

0 commit comments

Comments
 (0)