summaryrefslogtreecommitdiff
path: root/klaus
diff options
context:
space:
mode:
authorJonas Haag <jonas@lophus.org>2016-02-07 19:36:54 +0100
committerJonas Haag <jonas@lophus.org>2016-02-07 19:45:10 +0100
commitbcd646f9b1538d5873a81c312daca20ce641b3a8 (patch)
treec9f7f6ab2a5101052551cc574378f5aa509d84b0 /klaus
parent9d2c9dd5200b463bf08df8dcddcfc6dfff0e377d (diff)
Some Python 3 fixes
Diffstat (limited to 'klaus')
-rw-r--r--klaus/ctagsutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klaus/ctagsutils.py b/klaus/ctagsutils.py
index 59dbfa3..5790bad 100644
--- a/klaus/ctagsutils.py
+++ b/klaus/ctagsutils.py
@@ -8,7 +8,7 @@ from klaus.utils import check_output
def check_have_exuberant_ctags():
"""Check that the 'ctags' binary is *Exuberant* ctags (not etags etc)"""
try:
- return "Exuberant" in check_output(["ctags", "--version"], stderr=subprocess.PIPE)
+ return b"Exuberant" in check_output(["ctags", "--version"], stderr=subprocess.PIPE)
except subprocess.CalledProcessError:
return False