projects
/
gentoolkit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b882067
)
change the masking status message.
author
dol-sen
<brian.dolbec@gmail.com>
Mon, 25 Apr 2011 07:05:43 +0000
(
00:05
-0700)
committer
Paul Varner
<fuzzyray@gentoo.org>
Tue, 12 Jul 2011 21:29:01 +0000
(16:29 -0500)
pym/gentoolkit/revdep_rebuild/stuff.py
patch
|
blob
|
history
diff --git
a/pym/gentoolkit/revdep_rebuild/stuff.py
b/pym/gentoolkit/revdep_rebuild/stuff.py
index b1b6709eeeb5a83f67f252bf0c5e6899244b949b..459301f433c9f3f10ac98f1bc66b6f7843f81821 100644
(file)
--- a/
pym/gentoolkit/revdep_rebuild/stuff.py
+++ b/
pym/gentoolkit/revdep_rebuild/stuff.py
@@
-1,6
+1,7
@@
#!/usr/bin/python
import subprocess
+
import portage
@@
-39,7
+40,7
@@
def get_masking_status(ebuild):
try:
status = portage.getmaskingstatus(ebuild)
except KeyError:
- status = ['
deprecated
']
+ status = ['
unavailable
']
return status
if __name__ == '__main__':