We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94a3510 commit 04b860dCopy full SHA for 04b860d
commitizen/commands/commit.py
@@ -3,8 +3,7 @@
3
import selectors
4
import sys
5
import tempfile
6
-
7
-from asyncio import set_event_loop_policy, get_event_loop_policy, DefaultEventLoopPolicy
+from asyncio import DefaultEventLoopPolicy, get_event_loop_policy, set_event_loop_policy
8
from io import IOBase
9
10
import questionary
@@ -136,7 +135,7 @@ def __call__(self):
136
135
raise DryRunExit()
137
138
if commit_msg_file:
139
- default_mesaage = ""
+ default_message = ""
140
with open(commit_msg_file) as f:
141
default_message = f.read()
142
with open(commit_msg_file, "w") as f:
0 commit comments