aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debianpkg.py
diff options
context:
space:
mode:
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):