From d17347cc19661910b94c126c11e6e320995aaf06 Mon Sep 17 00:00:00 2001 From: Daniel Drake Date: Tue, 15 Jul 2008 11:41:47 -0400 Subject: [PATCH] #7523 fix content bundle installation --- src/sugar/bundle/contentbundle.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sugar/bundle/contentbundle.py b/src/sugar/bundle/contentbundle.py index effab236..3de64142 100644 --- a/src/sugar/bundle/contentbundle.py +++ b/src/sugar/bundle/contentbundle.py @@ -49,13 +49,13 @@ class ContentBundle(Bundle): self._library_version = None self._bundle_class = None - info_file = self._get_file('library/library.info') + info_file = self.get_file('library/library.info') if info_file is None: raise MalformedBundleException('No library.info file') self._parse_info(info_file) - if (self._get_file('index.html') is None and - self._get_file('library/library.xml') is None): + if (self.get_file('index.html') is None and + self.get_file('library/library.xml') is None): raise MalformedBundleException( 'Content bundle %s has neither index.html nor library.xml' % self._path)