From d8d73ff83d3e109e1ec37a4cc49505b5a47b71e6 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@cd1c1023-2f26-0410-ae45-c471fc1f0318> Date: Fri, 5 Oct 2007 14:34:15 +0000 Subject: [PATCH] fixed TFI git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@537 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- libraries/entropyTools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/entropyTools.py b/libraries/entropyTools.py index 2c54adf6f..8ee868e63 100644 --- a/libraries/entropyTools.py +++ b/libraries/entropyTools.py @@ -266,11 +266,11 @@ def allocateMaskedFile(file): txtcounter = str(counter) for x in range(4-len(txtcounter)): txtcounter = "0"+txtcounter - newfile = os.path.dirname(file)+"/"+".cfg"+txtcounter+"_"+os.path.basename(file) + newfile = os.path.dirname(file)+"/"+"._cfg"+txtcounter+"_"+os.path.basename(file) if not os.path.exists(newfile): break if not newfile: - newfile = os.path.dirname(file)+"/"+".cfg0000_"+os.path.basename(file) + newfile = os.path.dirname(file)+"/"+"._cfg0000_"+os.path.basename(file) return newfile # Imported from Gentoo portage_dep.py