Changed SetVenture to use Sprintf for prepending "~username".

main
diff 2020-11-13 05:35:13 +00:00
parent 4476d0f449
commit 7f1f3520ec
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ func SetVenture(args []string) error {
}
// Prepend status with user's name
input = "~" + curUser.Username + input
input = fmt.Sprintf("~%s%s", curUser.Username, input)
// Write file and create if it doesn't exist as world-readable.
err = ioutil.WriteFile(outputPath, []byte(input), 0644)