Make print_entry() pub to be available in get() implementation
This commit is contained in:
parent
a2ea89e936
commit
203e649b4f
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ pub fn retrieve(rt: &Runtime) {
|
|||
});
|
||||
}
|
||||
|
||||
fn print_entry(rt: &Runtime, scmd: &ArgMatches, e: FileLockEntry) {
|
||||
pub fn print_entry(rt: &Runtime, scmd: &ArgMatches, e: FileLockEntry) {
|
||||
if do_print_raw(scmd) {
|
||||
debug!("Printing raw content...");
|
||||
println!("{}", e.to_str());
|
||||
|
|
Loading…
Reference in a new issue