diff --git a/molecule/handlers.py b/molecule/handlers.py index 9e43b46..a3e002b 100644 --- a/molecule/handlers.py +++ b/molecule/handlers.py @@ -523,7 +523,7 @@ class IsoHandler(GenericHandlerInterface): digest = molecule.utils.md5sum(self.dest_iso) md5file = self.dest_iso+".md5" with open(md5file,"w") as f: - f.write("%s %s\n" % (os.path.basename(self.dest_iso),digest,)) + f.write("%s %s\n" % (digest,os.path.basename(self.dest_iso),)) f.flush() return 0