We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0b6a6 commit 2b7e711Copy full SHA for 2b7e711
gitless/cli/gl_branch.py
@@ -158,8 +158,8 @@ def _do_delete(delete_b, repo):
158
branch_str = 'Branch {0} will be removed'.format(b.branch_name)
159
remote_str = ''
160
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)):
+ remote_str = ' from remote repository {0}'.format(b.remote_name)
+ if not pprint.conf_dialog('{0}{1}'.format(branch_str, remote_str)):
163
pprint.msg('Aborted: removal of branch {0}'.format(b))
164
continue
165
0 commit comments