From f246a09b1a5ccad024b5377e5989a1fb2761d43f Mon Sep 17 00:00:00 2001 From: James Date: Tue, 20 Nov 2012 17:35:18 -0500 Subject: [PATCH] CC-4662: Media Monitor: Unable to add watched folder because it's read only, by airtime-import command - fixed --- utils/airtime-import/airtime-import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/airtime-import/airtime-import.py b/utils/airtime-import/airtime-import.py index cb4ec80ba..1e55c732c 100644 --- a/utils/airtime-import/airtime-import.py +++ b/utils/airtime-import/airtime-import.py @@ -161,7 +161,7 @@ def WatchAddAction(option, opt, value, parser): path = currentDir+path path = apc.encode_to(path, 'utf-8') if(os.path.isdir(path)): - os.chmod(path, 0765) + #os.chmod(path, 0765) res = api_client.add_watched_dir(path) if(res is None): exit("Unable to connect to the server.")