diff options
Diffstat (limited to 'www-apps/klaus/files/klaus-3.0.0-fix-cli.py')
-rw-r--r-- | www-apps/klaus/files/klaus-3.0.0-fix-cli.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/www-apps/klaus/files/klaus-3.0.0-fix-cli.py b/www-apps/klaus/files/klaus-3.0.0-fix-cli.py deleted file mode 100644 index 672cfeeb198b..000000000000 --- a/www-apps/klaus/files/klaus-3.0.0-fix-cli.py +++ /dev/null @@ -1,22 +0,0 @@ -https://github.com/jonashaag/klaus/pull/333 - -From a7f0a5511c4ee25e82ea704b90482c24f16f5bff Mon Sep 17 00:00:00 2001 -From: Louis Sautier <sautier.louis@gmail.com> -Date: Sun, 16 Jun 2024 15:23:35 +0200 -Subject: [PATCH] cli: fix startup with --ctags, fixes #330 - -It had been broken by 36a6d2c617f1120. ---- a/klaus/cli.py -+++ b/klaus/cli.py -@@ -102,9 +102,9 @@ def main(): - args.site_name = "%s:%d" % (args.host, args.port) - - if args.ctags != "none": -- from klaus.ctagsutils import check_have_exuberant_ctags -+ from klaus.ctagsutils import check_have_compatible_ctags - -- if not check_have_exuberant_ctags(): -+ if not check_have_compatible_ctags(): - print( - "ERROR: Exuberant ctags not installed (or 'ctags' binary isn't *Exuberant* ctags)", - file=sys.stderr, |