##// END OF EJS Templates
Minor cleanup for local lookup
Fernando Perez -
Show More
@@ -155,9 +155,10 b' class Application(object):'
155 we set them here. The Global section is for variables like this that
155 we set them here. The Global section is for variables like this that
156 don't belong to a particular component.
156 don't belong to a particular component.
157 """
157 """
158 self.default_config = Config()
158 c = Config()
159 self.default_config.Global.ipython_dir = get_ipython_dir()
159 c.Global.ipython_dir = get_ipython_dir()
160 self.default_config.Global.log_level = self.log_level
160 c.Global.log_level = self.log_level
161 self.default_config = c
161
162
162 def log_default_config(self):
163 def log_default_config(self):
163 self.log.debug('Default config loaded:')
164 self.log.debug('Default config loaded:')
General Comments 0
You need to be logged in to leave comments. Login now