Skip to content

Commit 2b7e711

Browse files
committed
fix in branch confirmation message
1 parent 2a0b6a6 commit 2b7e711

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitless/cli/gl_branch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ def _do_delete(delete_b, repo):
158158
branch_str = 'Branch {0} will be removed'.format(b.branch_name)
159159
remote_str = ''
160160
if isinstance(b, core.RemoteBranch):
161-
remote_str = 'from remote repository {0}'.format(b.remote_name)
162-
if not pprint.conf_dialog('{0} {1}'.format(branch_str, remote_str)):
161+
remote_str = ' from remote repository {0}'.format(b.remote_name)
162+
if not pprint.conf_dialog('{0}{1}'.format(branch_str, remote_str)):
163163
pprint.msg('Aborted: removal of branch {0}'.format(b))
164164
continue
165165

0 commit comments

Comments
 (0)