diff options
| -rwxr-xr-x | rclone-ide | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -239,7 +239,7 @@ def command_copy(options: Mapping[str, Any]) -> None: # build path to directory for local and remote local_directory_path = options.directory if options.directory: - if not os.path.exists(os.join(os.getcwd(), local_path, options.directory)): + if not os.path.exists(os.path.join(os.getcwd(), local_path, options.directory)): raise FileNotFoundError("Local directory missing") cmd = [ |
