xenserver: fix an output format error in cleanup_smp_locks

Change-Id: I9b58a1a1128921dd4de07a65b5615d1a0fe3fea9
This commit is contained in:
Chen Fan 2016-08-01 10:51:57 +08:00
parent eab62c0d8a
commit 17ed8bf929
1 changed files with 2 additions and 2 deletions

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__':