From 55d73db02573aabcd3de6212a2b6638f0e75fd53 Mon Sep 17 00:00:00 2001 From: Ilya Shakhat Date: Tue, 14 Jan 2014 16:21:20 +0400 Subject: [PATCH] Fix wrong formatting string Change-Id: Ie07b3026f4a65cde4331df1b5418be639b39e459 --- stackalytics/processor/record_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackalytics/processor/record_processor.py b/stackalytics/processor/record_processor.py index 1b8e44e74..e4334f267 100644 --- a/stackalytics/processor/record_processor.py +++ b/stackalytics/processor/record_processor.py @@ -107,7 +107,7 @@ class RecordProcessor(object): LOG.debug('User with email %s not found', email) return None, None - LOG.debug('Email %{email}s is mapped to launchpad user %{lp}s', + LOG.debug('Email %(email)s is mapped to launchpad user %(lp)s', {'email': email, 'lp': lp_profile['name']}) return lp_profile['name'], lp_profile['display_name']