From 04b4380c6125ef948572530f5da1708db1f3b957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Thu, 20 Dec 2018 14:05:15 +0100 Subject: [PATCH] Fix wrong import soil.web --- soil/VERSION | 2 +- soil/web/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/soil/VERSION b/soil/VERSION index 288adf5..dffa40e 100644 --- a/soil/VERSION +++ b/soil/VERSION @@ -1 +1 @@ -0.13.3 +0.13.4 diff --git a/soil/web/__init__.py b/soil/web/__init__.py index 04323bb..3db60bc 100644 --- a/soil/web/__init__.py +++ b/soil/web/__init__.py @@ -19,7 +19,7 @@ from xml.etree.ElementTree import tostring from tornado.concurrent import run_on_executor from concurrent.futures import ThreadPoolExecutor -from ..simulation import SoilSimulation +from ..simulation import Simulation logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) @@ -168,7 +168,7 @@ class SocketHandler(tornado.websocket.WebSocketHandler): @run_on_executor def nonblocking(self, config): - simulation = SoilSimulation(**config) + simulation = Simulation(**config) return simulation.run() @tornado.gen.coroutine