summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-01-22 19:17:24 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-01-22 19:17:24 -0300
commit84d7a559e5198478b1ae23d00dbd966461aadfe7 (patch)
tree8480de1917859c12d8c0b081c87190ae07d65244 /methods.py
parent9d571d8eacb07e1b96de049feca976b3309cd21d (diff)
parented3c73408b3b0ddf234ddcc5349fe85831e3ebba (diff)
downloadredot-engine-84d7a559e5198478b1ae23d00dbd966461aadfe7.tar.gz
Merge branch 'master' of https://github.com/godotengine/godot
Diffstat (limited to 'methods.py')
-rwxr-xr-xmethods.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods.py b/methods.py
index a894973e69..e8de4696cd 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)