From 9be53683f80a13a373b6e313be5e488d1370cb9a Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 5 Nov 2017 15:18:46 +0100 Subject: [PATCH] Typo --- runbullet/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbullet/__init__.py b/runbullet/__init__.py index 6cf25e7a9a..440bf5ec64 100644 --- a/runbullet/__init__.py +++ b/runbullet/__init__.py @@ -78,7 +78,7 @@ def _exec_func(body, retry=True): target = body.pop('target') action = body.pop('action') - tokens action.split('.') + tokens = action.split('.') module_name = str.join('.', tokens[:-1]) method_name = tokens[-1:][0]