mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-06 08:01:58 +02:00
...
This commit is contained in:
@@ -17,7 +17,11 @@ from functools import lru_cache, partial
|
||||
from typing import Any, Callable, Dict, Iterable, Iterator, List, Tuple
|
||||
|
||||
from docutils import nodes
|
||||
from docutils.parsers.rst.roles import normalize_options
|
||||
|
||||
try:
|
||||
from docutils.parsers.rst.roles import normalize_options
|
||||
except ImportError:
|
||||
from docutils.parsers.rst.roles import set_classes as normalize_options # type: ignore
|
||||
from pygments.lexer import RegexLexer
|
||||
from pygments.lexer import bygroups as untyped_bygroups
|
||||
from pygments.token import Comment, Error, Keyword, Literal, Name, Number, String, Whitespace
|
||||
|
||||
@@ -230,7 +230,7 @@ shell_name=$(command basename "$login_shell")
|
||||
}
|
||||
cp = subprocess.run(
|
||||
['sh', '-c', script], env=env, stdin=subprocess.DEVNULL,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
||||
capture_output=True, text=True)
|
||||
self.assertEqual(cp.returncode, 0, cp.stderr + cp.stdout)
|
||||
|
||||
@retry_on_failure()
|
||||
|
||||
Reference in New Issue
Block a user