Navigation Menu

Skip to content

Commit

Permalink
Fix incorrect LOG.error usage in _compare_cpu
Browse files Browse the repository at this point in the history
bug 1076308

Change-Id: I30a6447f005e708107dc01578664a4cb2bb14439
  • Loading branch information
DazWorrall authored and mikalstill committed Nov 14, 2012
1 parent 3d418dc commit 92eddd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/virt/libvirt/driver.py
Expand Up @@ -2367,7 +2367,7 @@ def _compare_cpu(self, cpu_info):
raise

if ret <= 0:
LOG.error(reason=m % locals())
LOG.error(m % locals())
raise exception.InvalidCPUInfo(reason=m % locals())

def _create_shared_storage_test_file(self):
Expand Down

0 comments on commit 92eddd2

Please sign in to comment.