From a1b228a63c0fec5a70df98a5a77b026de7637ad7 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 28 Nov 2023 03:30:38 -0600 Subject: [PATCH] Fix race conditions post line highlight --- src/content/blog/race-conditions-in-signal-handlers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/blog/race-conditions-in-signal-handlers.md b/src/content/blog/race-conditions-in-signal-handlers.md index cc9429d..d401e44 100644 --- a/src/content/blog/race-conditions-in-signal-handlers.md +++ b/src/content/blog/race-conditions-in-signal-handlers.md @@ -64,7 +64,7 @@ And so, my plan was to start a tar process as usual with the `--totals` flag, an process occasionally to query an extraction operation's progress. In Python, I used the `subprocess` module to start and manage the process. -```python {8,19} +```python {8,21} import os import subprocess import signal