diff options
| author | Jakob Unterwurzacher | 2015-11-25 19:50:58 +0100 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2015-11-25 20:57:16 +0100 | 
| commit | df46548be66ded2b504a5314b9496e961e9e2533 (patch) | |
| tree | 076abcea8bedc330ab5f880bda313dcc41f3c348 | |
| parent | dce0564f2ab12ab0d115a7e88fe48d09f353f966 (diff) | |
Print newline after gocryptfs.conf not found error
| -rw-r--r-- | main.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -77,7 +77,7 @@ func loadConfig(args *argContainer) (masterkey []byte, confFile *cryptfs.ConfFil  	// Check if the file exists at all before prompting for a password  	_, err := os.Stat(args.config)  	if err != nil { -		fmt.Print(err) +		fmt.Println(err)  		os.Exit(ERREXIT_LOADCONF)  	}  	fmt.Printf("Password: ") | 
