comparison application.py @ 168:bfd3a4ef7f2b

Removed left-over debug code that was falsely included in the last commit.
author Beliar <KarstenBock@gmx.net>
date Wed, 22 Feb 2012 12:31:02 +0100
parents b3b82c2aebee
children 67d3f629658f
comparison
equal deleted inserted replaced
167:b3b82c2aebee 168:bfd3a4ef7f2b
114 @return: None""" 114 @return: None"""
115 ApplicationBase.__init__(self, setting) 115 ApplicationBase.__init__(self, setting)
116 self.manager = FifeManager() 116 self.manager = FifeManager()
117 # KLUDGE M. George Hansen 2011-06-04: See parpg/vfs.py. 117 # KLUDGE M. George Hansen 2011-06-04: See parpg/vfs.py.
118 vfs.VFS = self.engine.getVFS() 118 vfs.VFS = self.engine.getVFS()
119 print(vfs.VFS)
120 vfs.VFS.addNewSource(setting.get("parpg","DataPath")) 119 vfs.VFS.addNewSource(setting.get("parpg","DataPath"))
121 120
122 pychan.init(self.engine, debug = True) 121 pychan.init(self.engine, debug = True)
123 pychan.setupModalExecution(self.mainLoop,self.breakFromMainLoop) 122 pychan.setupModalExecution(self.mainLoop,self.breakFromMainLoop)
124 123