Skip to content

Commit

Permalink
Change python dependency in commit-msg git hook (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
surajkn committed Apr 18, 2022
1 parent 4f806ac commit f6c7e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/git/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python3

import sys
import re
Expand Down Expand Up @@ -102,7 +102,7 @@ def print_error(msg):


def print_warning(msg):
print TerminalColors.warn(msg)
print(TerminalColors.warn(msg))


def process_commit_message(msg):
Expand Down

0 comments on commit f6c7e76

Please sign in to comment.