diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ops.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ops.rs b/src/ops.rs index d786dfa41..7e6071d65 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -816,8 +816,8 @@ fn op_copy_file( // Once the issue is reolved, we should remove this workaround. if cfg!(unix) && !from.is_file() { return Err(errors::new( - ErrorKind::NotFound, - "File not found".to_string(), + ErrorKind::NotFound, + "File not found".to_string(), )); } |