run the path from the add command through os.path.expanduser
This commit is contained in:
parent
8144d15689
commit
902ef3fa28
|
@ -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 = []
|
||||
|
|
Loading…
Reference in New Issue