aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kahle <tomka@gentoo.org>2012-02-03 17:34:53 +0100
committerThomas Kahle <tomka@gentoo.org>2012-02-03 17:34:53 +0100
commit355f9b11f3b24f262b6861e72f76b21d83104ac1 (patch)
tree4cd31a5e80d0d21e29d46db37b57442221724d59 /scripts
parentMake cvs tree location configurable (diff)
downloadtatt-355f9b11f3b24f262b6861e72f76b21d83104ac1.tar.gz
tatt-355f9b11f3b24f262b6861e72f76b21d83104ac1.tar.bz2
tatt-355f9b11f3b24f262b6861e72f76b21d83104ac1.zip
Better output will writing unmaskfiles
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tatt4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tatt b/scripts/tatt
index 4517bb0..c3b5520 100755
--- a/scripts/tatt
+++ b/scripts/tatt
@@ -162,10 +162,10 @@ if not packs==None:
for p in packs:
# Test if unmaskfile already contains the atom
if re.search(p.packageString(), unmaskfileContent):
- print (p.packageString() + " already in package.keywords.")
+ print (p.packageString() + " already in "+config['unmaskfile'])
else:
unmaskfile.write("\n" + p.packageString() + "\n")
- print ("Appended " + p.packageString()+ " to /etc/portage/package.keywords/arch")
+ print ("Appended " + p.packageString()+ " to "+config['unmaskfile'])
unmaskfile.close()
else:
print ("You are not root, your unmaskstring would be:")