comparison frontends/src/wix/wix @ 1021:a836b6da2c5c

core (log): moved configuration to core.log_config; this avoid import issues with pyjamas.
author Goffi <goffi@goffi.org>
date Wed, 14 May 2014 12:51:24 +0200
parents 5a6354ff468c
children
comparison
equal deleted inserted replaced
1020:adbde4a3a52f 1021:a836b6da2c5c
17 # You should have received a copy of the GNU Affero General Public License 17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 19
20 20
21 from sat_frontends.wix.constants import Const as C 21 from sat_frontends.wix.constants import Const as C
22 from sat.core import log 22 from sat.core import log_config
23 log.satConfigure(C.LOG_BACKEND_STANDARD, C) 23 log_config.satConfigure(C.LOG_BACKEND_STANDARD, C)
24 import wx 24 import wx
25 from sat_frontends.wix.main_window import MainWindow 25 from sat_frontends.wix.main_window import MainWindow
26 26
27 27
28 class SATApp(wx.App): 28 class SATApp(wx.App):