summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-11 06:44:19 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-11 06:44:19 +0000
commit892ba13564ee3835d34fe28bc6ed81d449a35177 (patch)
tree063565114a9920cbee228ff1937fec57b47c3fcd /pym
parente372473449a8e28bb146686bc74c8519bef7d642 (diff)
downloadportage-892ba13564ee3835d34fe28bc6ed81d449a35177.tar.gz
portage-892ba13564ee3835d34fe28bc6ed81d449a35177.tar.bz2
portage-892ba13564ee3835d34fe28bc6ed81d449a35177.zip
whitespace cleanup (trunk r12766)
svn path=/main/branches/2.1.6/; revision=13010
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/news.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pym/portage/news.py b/pym/portage/news.py
index b20fd422e..750df3dd6 100644
--- a/pym/portage/news.py
+++ b/pym/portage/news.py
@@ -148,10 +148,10 @@ class NewsManager(object):
If update is specified, updateNewsItems( repoid ) will be called to
check for new items.
"""
-
+
if update:
self.updateItems(repoid)
-
+
unread_filename = self._unread_filename(repoid)
unread_lock = None
try:
@@ -182,9 +182,9 @@ class NewsItem(object):
Creation of a news item involves passing in the path to the particular news item.
"""
-
+
def __init__(self, path, name):
- """
+ """
For a given news item we only want if it path is a file.
"""
self.path = path
@@ -206,7 +206,7 @@ class NewsItem(object):
if not len(self.restrictions):
return True # no restrictions to match means everyone should see it
-
+
kwargs = \
{ 'vardb' : vardb,
'config' : config,
@@ -215,7 +215,7 @@ class NewsItem(object):
for restriction in self.restrictions:
if restriction.checkRestriction(**kwargs):
return True
-
+
return False # No restrictions were met; thus we aren't relevant :(
def isValid(self):
@@ -301,7 +301,7 @@ class DisplayInstalledRestriction(DisplayRestriction):
An Installation restriction where a particular item shall only be displayed
if the user has that item installed.
"""
-
+
def __init__(self, atom):
self.atom = atom