Browse Source

git-branchp: fix accidental str concatenation

raylu 6 months ago
parent
commit
a764011006
1 changed files with 1 additions and 1 deletions
  1. 1 1
      git-branchp

+ 1 - 1
git-branchp

@@ -22,7 +22,7 @@ def main():
 		if has_branchless():
 		if has_branchless():
 			run([b'git', b'hide'] + [b'draft()::' + branch for branch in to_delete])
 			run([b'git', b'hide'] + [b'draft()::' + branch for branch in to_delete])
 		else:
 		else:
-			run([b'git' b'branch', b'-D'] + to_delete)
+			run([b'git', b'branch', b'-D'] + to_delete)
 
 
 def all_remotes():
 def all_remotes():
 	refs = run(['git', 'for-each-ref', '--format=%(refname:short)', 'refs/remotes'], capture_output=True)
 	refs = run(['git', 'for-each-ref', '--format=%(refname:short)', 'refs/remotes'], capture_output=True)