Fix wrong formatting string

Change-Id: Ie07b3026f4a65cde4331df1b5418be639b39e459
This commit is contained in:
Ilya Shakhat
2014-01-14 16:21:20 +04:00
parent 7ca7acfa26
commit 55d73db025

View File

@@ -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']