diff --git a/deluge/ui/console/commands/add.py b/deluge/ui/console/commands/add.py index 24fc9237b..1a931e4d1 100644 --- a/deluge/ui/console/commands/add.py +++ b/deluge/ui/console/commands/add.py @@ -58,7 +58,7 @@ class Command(BaseCommand): t_options = {} if options["path"]: - t_options["download_location"] = options["path"] + t_options["download_location"] = os.path.expanduser(options["path"]) # Keep a list of deferreds to make a DeferredList deferreds = []