From b732490b2c96cb4340552c07d28e54f0402878b7 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Mon, 24 Dec 2012 00:27:59 +0100 Subject: [PATCH] add missing default methods in target.py --- buildozer/target.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildozer/target.py b/buildozer/target.py index 6f68fbb..f4b961f 100644 --- a/buildozer/target.py +++ b/buildozer/target.py @@ -24,6 +24,9 @@ class Target(object): def compile_platform(self): pass + def install_platform(self): + pass + def get_custom_commands(self): result = [] for x in dir(self):