Skip to content

Commit 3128b8a

Browse files
committed
Fix session renaming with a space
1 parent 9776d48 commit 3128b8a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tmuxp/session.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ def rename_session(self, new_name):
108108
:rtype: :class:`Session`
109109
110110
"""
111-
new_name = pipes.quote(new_name)
112111
proc = self.tmux(
113112
'rename-session',
114113
'-t%s' % self.get('session_id'),

tmuxp/testsuite/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
logger = logging.getLogger(__name__)
2222

23-
TEST_SESSION_PREFIX = 'tmuxp_'
23+
TEST_SESSION_PREFIX = 'test tmuxp_'
2424

2525

2626
def get_test_session_name(server, prefix='tmuxp_'):

0 commit comments

Comments
 (0)