Skip to content
Snippets Groups Projects

Bump dependencies

Merged Jonas Braathen requested to merge bump-deps into master
Files
2
@@ -10,7 +10,11 @@ class Command(BaseCommand):
def handle(self, *args, **options):
try:
with open(settings.NOTIFICATION_PUBLISHER["daemon"]["pid_file"], "r") as f:
with open(
settings.NOTIFICATION_PUBLISHER["daemon"]["pid_file"],
"r",
encoding="utf-8",
) as f:
pid = int(f.read().strip())
os.kill(pid, signal.SIGINT)
Loading