aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debianpkg.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2022-12-30 13:27:55 +0100
committerGuido Günther <agx@sigxcpu.org>2022-12-30 13:27:55 +0100
commit262383ed118432bc157c5f992c0aff9240b998c8 (patch)
tree5750cb80fafbccee542719fb2f0e65b88737df5a /whatmaps/debianpkg.py
parent995da8caee1785555bcc26f52ed6f0a34470e48a (diff)
parente28c99d3fc7c391de039321e87b5ce12eae38572 (diff)
Merge tag 'v0.0.13' into debian/master
v0.0.13
Diffstat (limited to 'whatmaps/debianpkg.py')
-rw-r--r--whatmaps/debianpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/whatmaps/debianpkg.py b/whatmaps/debianpkg.py
index 0192513..0e1301f 100644
--- a/whatmaps/debianpkg.py
+++ b/whatmaps/debianpkg.py
@@ -22,7 +22,7 @@ from . pkg import Pkg
class DebianPkg(Pkg):
type = 'Debian'
- _init_script_re = re.compile('/etc/init.d/[\w\-\.]')
+ _init_script_re = re.compile(r'/etc/init.d/[\w\-\.]')
_list_contents = ['dpkg-query', '-L', '${pkg_name}']
def __init__(self, name):