From 8217fa6cebab41b1deea82b74a1423102ab093a2 Mon Sep 17 00:00:00 2001 From: Davte Date: Sat, 20 Jul 2019 10:34:52 +0200 Subject: [PATCH] Run ciclopibot as module now, as it is now a module Otherwise, relative imports (`from . import`) cannot be resolved --- run_me.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_me.sh b/run_me.sh index 4633294..f1f987d 100755 --- a/run_me.sh +++ b/run_me.sh @@ -53,6 +53,6 @@ do $python_virtual_environment/pip install --upgrade --no-cache-dir \ --no-deps davtelepot; echo "Running python script"; - $python_virtual_environment/python $python_script; + $python_virtual_environment/python -m ciclopibot.bot; i=$?; done