From 424fdbf7b9d68d5e16491c7523213c35bcfc9adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 27 Mar 2020 19:09:52 +0100 Subject: [PATCH] Fix import in the run command (#2232) --- poetry/console/commands/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poetry/console/commands/run.py b/poetry/console/commands/run.py index d9e9b7639d9..fda01114426 100644 --- a/poetry/console/commands/run.py +++ b/poetry/console/commands/run.py @@ -50,7 +50,7 @@ def run_script(self, script, args): @property def _module(self): - from ...masonry.utils.module import Module + from poetry.core.masonry.utils.module import Module poetry = self.poetry package = poetry.package