Skip to content

Commit 40bc943

Browse files
committed
fix(fast-commit): logic error that passed by
1 parent 888260b commit 40bc943

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.3
1+
3.3.4

commit_helper/utils/file_handler.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ def handle_file_based_commit(file_path, debug_mode, args):
2323

2424
if convention == 'none':
2525
notify('You are not using a convention')
26-
commit_msg = just_message()
26+
if args.message is not '':
27+
commit_msg = just_message(msg=args.message)
28+
else:
29+
commit_msg = just_message()
2730

2831
elif convention == 'custom':
2932
notify('You are using your custom convention')

0 commit comments

Comments
 (0)