diff --git a/conf/init/service/teamsyncworker/run b/conf/init/service/teamsyncworker/run index 17b45459f..2ec485670 100755 --- a/conf/init/service/teamsyncworker/run +++ b/conf/init/service/teamsyncworker/run @@ -4,6 +4,6 @@ echo 'Starting team synchronization worker' QUAYPATH=${QUAYPATH:-"."} cd ${QUAYDIR:-"/"} -PYTHONPATH=$QUAYPATH venv/bin/python -m workers.teamsyncworker 2>&1 +PYTHONPATH=$QUAYPATH venv/bin/python -m workers.teamsyncworker.teamsyncworker 2>&1 echo 'Team synchronization worker exited' \ No newline at end of file diff --git a/workers/teamsyncworker/__init__.py b/workers/teamsyncworker/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/workers/teamsyncworker.py b/workers/teamsyncworker/teamsyncworker.py similarity index 100% rename from workers/teamsyncworker.py rename to workers/teamsyncworker/teamsyncworker.py