From 1f5a5fd29484a4c0256c20a02587ab55b0182b52 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Wed, 21 Nov 2012 17:24:31 -0500 Subject: [PATCH] typo --- python_apps/media-monitor2/media/saas/airtimeinstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/media-monitor2/media/saas/airtimeinstance.py b/python_apps/media-monitor2/media/saas/airtimeinstance.py index edc544144..4c537d182 100644 --- a/python_apps/media-monitor2/media/saas/airtimeinstance.py +++ b/python_apps/media-monitor2/media/saas/airtimeinstance.py @@ -41,7 +41,7 @@ class AirtimeInstance(object): def touch_file_path(self): """ Get the path of the touch file for every instance """ - touch_base_path = self.mm_config['index-path'] + touch_base_path = self.mm_config['index_path'] touch_base_name = basename(touch_base_path) new_base_name = self.name + touch_base_name return join(dirname(touch_base_path), new_base_name)