From 5e7c763fbf43247c366b0cc21cd722c5e726dd3f Mon Sep 17 00:00:00 2001 From: James Date: Thu, 14 Jul 2011 10:49:57 -0400 Subject: [PATCH] CC-2545:Airtime-import doesnt handle spaces in file/dir names -fixed --- utils/airtime-import/airtime-import | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/airtime-import/airtime-import b/utils/airtime-import/airtime-import index 6a1dc5a65..e18781929 100755 --- a/utils/airtime-import/airtime-import +++ b/utils/airtime-import/airtime-import @@ -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