From a69dadbf7987b7a942d053f1f9c811840c308568 Mon Sep 17 00:00:00 2001 From: Alec Warner Date: Thu, 18 Jan 2007 17:39:15 +0000 Subject: [PATCH] but news lib path is global, not an attr svn path=/main/trunk/; revision=5705 --- pym/portage_news.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage_news.py b/pym/portage_news.py index 5cbb7c1a3..e2b734649 100644 --- a/pym/portage_news.py +++ b/pym/portage_news.py @@ -29,7 +29,7 @@ class NewsManager(object): def __init__( self, root, NEWS_PATH, UNREAD_PATH, LANGUAGE_ID='en' ): self.NEWS_PATH = NEWS_PATH self.UNREAD_PATH = UNREAD_PATH - self.TIMESTAMP_PATH = os.path.join( root, self.NEWS_PATH, NewsManager.TIMESTAMP_FILE ) + self.TIMESTAMP_PATH = os.path.join( root, NEWS_LIB_PATH, NewsManager.TIMESTAMP_FILE ) self.target_root = root self.LANGUAGE_ID = LANGUAGE_ID self.config = config( config_root = os.environ.get("PORTAGE_CONFIGROOT", "/"), -- 2.26.2