diff options
| author | Daniel Weipert <code@drogueronin.de> | 2021-12-16 14:10:20 +0100 | 
|---|---|---|
| committer | Daniel Weipert <code@drogueronin.de> | 2022-01-10 13:28:28 +0100 | 
| commit | 19d8b12a670d72555ed2e1a08b26b1d57c58dc9d (patch) | |
| tree | 6ba93f918d81036636ebf8824fac85baf547e31a /lua | |
| parent | 61eb4a652ff35fd6b4b29645dc2412690083e610 (diff) | |
Fix copyFile error message wording
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/rclone.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/rclone.lua b/lua/rclone.lua index 308f06c..2e18871 100644 --- a/lua/rclone.lua +++ b/lua/rclone.lua @@ -251,7 +251,7 @@ local function copyFile(options)      local local_path_pattern = local_path:gsub('([^%w])', '%%%1')      if local_file_path:find(local_path_pattern) == nil then -      print('Local path not in file path') +      print('File path not in local path')        return      end  | 
