Ver Fonte

util/cli: Aesthetics

parazyd há 3 anos atrás
pai
commit
b6a0170863
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/util/cli.rs

+ 1 - 1
src/util/cli.rs

@@ -65,7 +65,7 @@ pub fn spawn_config(path: &Path, contents: &[u8]) -> Result<()> {
 
         let mut file = fs::File::create(path)?;
         file.write_all(contents)?;
-        println!("Config file created in '{:?}'. Please review it and try again.", path);
+        println!("Config file created in {:?}. Please review it and try again.", path);
         std::process::exit(2);
     }