summaryrefslogtreecommitdiffstats
path: root/src/repo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/repo.rs')
-rw-r--r--src/repo.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/repo.rs b/src/repo.rs
index b0e88c4..5f2fcb7 100644
--- a/src/repo.rs
+++ b/src/repo.rs
@@ -348,7 +348,10 @@ impl RepoCommand {
println!("{}", repo.full_name.ok_or_eyre("no full name")?);
if let Some(parent) = &repo.parent {
- println!("Fork of {}", parent.full_name.as_ref().ok_or_eyre("no full name")?);
+ println!(
+ "Fork of {}",
+ parent.full_name.as_ref().ok_or_eyre("no full name")?
+ );
}
if repo.mirror == Some(true) {
if let Some(original) = &repo.original_url {