From d3332a574ed03253f841405a9df7cf4801d5173b Mon Sep 17 00:00:00 2001 From: Luka Date: Wed, 20 Jan 2016 17:48:53 +0100 Subject: [PATCH] Fixed wrong variable names --- methods.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/methods.py b/methods.py index a894973e693b..e8de4696cdf7 100755 --- a/methods.py +++ b/methods.py @@ -1287,10 +1287,10 @@ def android_add_java_dir(self,subpath): def android_add_res_dir(self,subpath): base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath self.android_res_dirs.append(base_path) -def android_add_aidl_dir(self,file): +def android_add_aidl_dir(self,subpath): base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath self.android_aidl_dirs.append(base_path) -def android_add_jni_dir(self,file): +def android_add_jni_dir(self,subpath): base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath self.android_jni_dirs.append(base_path)