diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-03-16 07:40:47 +0100 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2022-03-16 11:52:12 -0700 |
commit | c15fcdb8cb1bbb3825dd6cfac1213587209c04b0 (patch) | |
tree | 2e844a6ac76e46cfe652671c78116cfea01bdca1 /dev-python/libtmux | |
parent | dev-python/pypax: Add py310 (diff) | |
download | gentoo-c15fcdb8cb1bbb3825dd6cfac1213587209c04b0.tar.gz gentoo-c15fcdb8cb1bbb3825dd6cfac1213587209c04b0.tar.bz2 gentoo-c15fcdb8cb1bbb3825dd6cfac1213587209c04b0.zip |
dev-python/libtmux: remove unused patch(es)
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/24598
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'dev-python/libtmux')
-rw-r--r-- | dev-python/libtmux/files/libtmux-0.10.0-more-specific-ids.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/dev-python/libtmux/files/libtmux-0.10.0-more-specific-ids.patch b/dev-python/libtmux/files/libtmux-0.10.0-more-specific-ids.patch deleted file mode 100644 index ca5817bda5f4..000000000000 --- a/dev-python/libtmux/files/libtmux-0.10.0-more-specific-ids.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/libtmux/session.py b/libtmux/session.py -index cd6af00..e4c02e2 100644 ---- a/libtmux/session.py -+++ b/libtmux/session.py -@@ -263,7 +263,7 @@ class Session(TmuxMappingObject, TmuxRelationalObject, EnvironmentMixin): - if isinstance(target_window, int): - target = '-t%s:%d' % (self.name, target_window) - else: -- target = '-t%s' % target_window -+ target = '-t%s:%s' % (self.name, target_window) - - proc = self.cmd('kill-window', target) - -diff --git a/libtmux/window.py b/libtmux/window.py -index e62e8df..f452575 100644 ---- a/libtmux/window.py -+++ b/libtmux/window.py -@@ -366,7 +366,7 @@ class Window(TmuxMappingObject, TmuxRelationalObject): - if target_pane in ['-l', '-U', '-D', '-L', '-R']: - proc = self.cmd('select-pane', '-t%s' % self.id, target_pane) - else: -- proc = self.cmd('select-pane', '-t%s' % target_pane) -+ proc = self.cmd('select-pane', '-t%%%s' % target_pane) - - if proc.stderr: - raise exc.LibTmuxException(proc.stderr) |