Skip to content
Snippets Groups Projects

Bump dependencies

Merged Jonas Braathen requested to merge bump-deps into master
2 files
+ 10
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -10,7 +10,11 @@ class Command(BaseCommand):
@@ -10,7 +10,11 @@ class Command(BaseCommand):
def handle(self, *args, **options):
def handle(self, *args, **options):
try:
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())
pid = int(f.read().strip())
os.kill(pid, signal.SIGINT)
os.kill(pid, signal.SIGINT)
Loading