Skip to content

Commit

Permalink
updating error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
distractedm1nd committed Apr 13, 2023
1 parent b804ec2 commit 023f2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mount/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (f *FileMount) Serialize() *url.URL {

func (f *FileMount) Deserialize(u *url.URL) error {
if u.Path == "" {
return fmt.Errorf("invalid host")
return fmt.Errorf("invalid path")
}
f.Path = u.Path
return nil
Expand Down

0 comments on commit 023f2ee

Please sign in to comment.