# HG changeset patch # User Goffi # Date 1331020999 -3600 # Node ID 094050fe461e3172aa342b20b087af1a325c7323 # Parent fbe7c9118ce42c8ca741e740d9c93170be151882 core: fixed Params class name in load_default_params diff -r fbe7c9118ce4 -r 094050fe461e INSTALL --- a/INSTALL Sun Jan 29 03:00:25 2012 +0100 +++ b/INSTALL Tue Mar 06 09:03:19 2012 +0100 @@ -17,6 +17,7 @@ - wxWidgets (http://www.wxwidgets.org) which is found in most distributions. The more recent the version is, the better. - urwid (http://excess.org/urwid/) which can be installed with easy_install - BeautifulSoup (http://www.crummy.com/software/BeautifulSoup/) which can be installed with easy_install +- Mutagen (http://code.google.com/p/mutagen/) which can be installed with easy_install ** PATHS: diff -r fbe7c9118ce4 -r 094050fe461e src/memory/memory.py --- a/src/memory/memory.py Sun Jan 29 03:00:25 2012 +0100 +++ b/src/memory/memory.py Tue Mar 06 09:03:19 2012 +0100 @@ -23,7 +23,6 @@ import os.path import time -import cPickle as pickle from ConfigParser import SafeConfigParser, NoOptionError, NoSectionError from xml.dom import minidom from logging import debug, info, warning, error @@ -74,7 +73,7 @@ } def load_default_params(self): - self.dom = minidom.parseString(Param.default_xml.encode('utf-8')) + self.dom = minidom.parseString(Params.default_xml.encode('utf-8')) def load_xml(self, file): """Load parameters template from file"""