Skip to content

Commit 43978d9

Browse files
committed
fix start command
1 parent 5ee368d commit 43978d9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

blitzortung/cli/start_webservice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def main():
77

88
pid_file = "/var/run/bo-webservice.pid"
99

10-
args = ["twistd", "--pidfile", pid_file, "-oy", os.path.join(target_dir, "webservice.py")]
10+
args = [os.path.join(target_dir, "twistd"), "--pidfile", pid_file, "-oy", os.path.join(target_dir, "webservice.py")]
1111
print(" ".join(args))
1212
subprocess.call(args)
1313

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = 'blitzortung'
3-
version = '1.11.2'
3+
version = '1.11.3'
44
description = 'blitzortung.org python modules'
55
authors = [
66
{name = "Andreas Würl",email = "andi@tryb.de"}

0 commit comments

Comments
 (0)