diff options
-rw-r--r-- | pym/portage/news.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pym/portage/news.py b/pym/portage/news.py index dd90f40d3..203ce3fec 100644 --- a/pym/portage/news.py +++ b/pym/portage/news.py @@ -3,14 +3,17 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +__all__ = ["NewsManager", "NewsItem", "DisplayRestriction", + "DisplayProfileRestriction", "DisplayKeywordRestriction", + "DisplayInstalledRestriction"] + import errno import os import re -from portage.const import INCREMENTALS, PROFILE_PATH, NEWS_LIB_PATH from portage.util import ensure_dirs, apply_permissions, normalize_path, grabfile, write_atomic from portage.data import portage_gid -from portage.locks import lockfile, unlockfile, lockdir, unlockdir -from portage.exception import FileNotFound, OperationNotPermitted +from portage.locks import lockfile, unlockfile +from portage.exception import OperationNotPermitted class NewsManager(object): """ |