Skip to content

Commit afb9ae0

Browse files
committed
Merge pull request #2 from mandarvaze/patch-1
Fixed typo in delete_branch()
2 parents 83f72ea + 29e22ef commit afb9ae0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gitutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def delete_branch(branch, force=False):
6969
origin_name, branch_name = parts
7070
execute_git('push %s :%s' % (origin_name, branch_name))
7171
else:
72-
print 'Don\'t knod how to delete %s' % branch
72+
print 'Don\'t know how to delete %s' % branch
7373
else:
7474
execute_git('branch %s %s' % ('-D' if force else '-d', branch))
7575

0 commit comments

Comments
 (0)