Skip to content

Commit

Permalink
Better output will writing unmaskfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
tom111 committed Feb 3, 2012
1 parent c91b02f commit 355f9b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tatt
Original file line number Diff line number Diff line change
Expand Up @@ -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:")
Expand Down

0 comments on commit 355f9b1

Please sign in to comment.