whitespace cleanup
authorZac Medico <zmedico@gentoo.org>
Fri, 6 Mar 2009 03:56:37 +0000 (03:56 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 6 Mar 2009 03:56:37 +0000 (03:56 -0000)
svn path=/main/trunk/; revision=12766

pym/portage/news.py

index b20fd422e1917ea709eefb04880cd6c1e82da8b7..750df3dd6fa78757c4bbbecbb5182b4ecce98d80 100644 (file)
@@ -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