From 16b2ab67fb6afc3ce22ec03d7222b15550b4e453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Wed, 29 Jun 2016 23:08:19 +0200 Subject: [PATCH] Bugfix: missing 'and' operator. causes crash when compiling with cython --- primo/linking/intent_filters.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primo/linking/intent_filters.pyx b/primo/linking/intent_filters.pyx index d391b3f..9eea0c8 100644 --- a/primo/linking/intent_filters.pyx +++ b/primo/linking/intent_filters.pyx @@ -170,7 +170,7 @@ cdef class IntentFilter(object): """ return (self.actions and len(self.actions) >= 1 - _ACTION_MAIN in self.actions) + and _ACTION_MAIN in self.actions) def print_end_point(self): print "package",self.component.application_id -- GitLab