diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-04-20 11:06:03 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-04-20 11:06:03 -0400 |
| commit | bee606e08f5ba96a25d02a9358265db4a59ce5cd (patch) | |
| tree | 96664effe7e25b328d2afdf949a774fa6b1a95de /nova/compute | |
| parent | c963b2bbb6a68a66319bd278cfc12b896ac4540c (diff) | |
Removed _ and replaced with real variable name.
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index a0f0ff27e..703533f55 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -106,7 +106,7 @@ class API(base.Base): def _check_injected_file_format(self, injected_files): """Ensure given injected files are in the correct format.""" - for _, content in injected_files: + for file_path, content in injected_files: try: base64.b64decode(content) except TypeError: |
