1
0
Fork 0

Adding debian version 2.23+dfsg-1.1.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
Daniel Baumann 2025-06-21 08:03:53 +02:00
parent 1e97beb507
commit 3ab1d7a5b6
Signed by: daniel.baumann
GPG key ID: BCC918A2ABD66424
31 changed files with 1153 additions and 0 deletions

View file

@ -0,0 +1,22 @@
From: Neil Muller <drnlmuller+debian@gmail.com>
Date: Sun, 5 Feb 2023 11:31:39 +0200
Subject: Fix syntax error in irkerhook.py
Bug-Upstream: https://gitlab.com/esr/irker/-/merge_requests/32
---
irkerhook.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/irkerhook.py b/irkerhook.py
index 1d3226c..208b756 100755
--- a/irkerhook.py
+++ b/irkerhook.py
@@ -49,7 +49,7 @@ version = "2.21"
# pylint: disable=multiple-imports,wrong-import-position
import os, sys, socket, subprocess, locale, datetime, re
-try
+try:
from shlex import quote as shellquote
except ImportError:
from pipes import quote as shellquote