Merge "xenserver: fix an output format error in cleanup_smp_locks"

This commit is contained in:
Jenkins 2016-08-04 14:57:25 +00:00 committed by Gerrit Code Review
commit 9defc52f68

View File

@ -115,8 +115,8 @@ def main():
if options.dry_run:
print("** Dry Run **")
print("Total locks removed: ", lockpaths_removed)
print("Total namespaces removed: ", nspaths_removed)
print("Total locks removed: %d" % lockpaths_removed)
print("Total namespaces removed: %d" % nspaths_removed)
if __name__ == '__main__':