minor pep8 fix.

This commit is contained in:
Rick Clark 2011-07-08 17:46:20 -05:00
parent 5c1bca06ff
commit 632b5bb800
1 changed files with 2 additions and 4 deletions

View File

@ -24,10 +24,8 @@ from quantum.plugins.cisco import cisco_constants as const
LOG.basicConfig(level=LOG.WARN)
LOG.getLogger(const.LOGGER_COMPONENT_NAME)
_creds_dictionary = {
'10.10.10.10': ["username", "password"],
'127.0.0.1': ["root", "nova"]
}
_creds_dictionary = {'10.10.10.10': ["username", "password"],
'127.0.0.1': ["root", "nova"]}
class Store(object):