aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/cffsubr/files/cffsubr-system_tx.diff')
-rw-r--r--dev-python/cffsubr/files/cffsubr-system_tx.diff12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev-python/cffsubr/files/cffsubr-system_tx.diff b/dev-python/cffsubr/files/cffsubr-system_tx.diff
deleted file mode 100644
index 16c41c74c..000000000
--- a/dev-python/cffsubr/files/cffsubr-system_tx.diff
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/src/cffsubr/__init__.py
-+++ b/src/cffsubr/__init__.py
-@@ -60,8 +60,7 @@ def _run_embedded_tx(*args, **kwargs):
- subprocess.CompletedProcess object with the following attributes:
- args, returncode, stdout, stderr.
- """
-- with path(__name__, TX_EXE) as tx_cli:
-- return subprocess.run([str(tx_cli)] + list(args), **kwargs)
-+ return subprocess.run(['tx'] + list(args), **kwargs)
-
-
- def _tx_subroutinize(data: bytes, output_format: str = CFFTableTag.CFF) -> bytes: