瀏覽代碼

git-branchp: fix accidental str concatenation

raylu 6 月之前
父節點
當前提交
a764011006
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      git-branchp

+ 1 - 1
git-branchp

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