CC-2545:Airtime-import doesnt handle spaces in file/dir names

-fixed
This commit is contained in:
James 2011-07-14 10:49:57 -04:00
parent f0cc6614d9
commit 5e7c763fbf
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ exec 2>&1
export PYTHONPATH=${api_client_path}
# Note the -u when calling python! we need it to get unbuffered binary stdout and stderr
exec python -u ${airtime_import_path}${airtime_import_script} $@
exec python -u ${airtime_import_path}${airtime_import_script} "$@"
# EOF