Molecule:

- fix a type error


git-svn-id: http://svn.sabayonlinux.org/projects/molecule/trunk@3101 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2009-03-03 10:56:55 +00:00
parent 9efab119a2
commit ca678519cc
+1 -1
View File
@@ -197,7 +197,7 @@ class ChrootHandler(GenericHandlerInterface):
exec_script = self.metadata.get('inner_chroot_script')
if exec_script:
while 1:
tmp_dir = os.path.join(self.dest_dir,molecule.utils.get_random_number())
tmp_dir = os.path.join(self.dest_dir,str(molecule.utils.get_random_number()))
if not os.path.lexists(tmp_dir): break
os.makedirs(tmp_dir)
tmp_exec = os.path.join(tmp_dir,"inner_exec")