Skip to content

Commit 4fe3d0f

Browse files
committed
Fix problem by overlapping in the menu
1 parent acef9ed commit 4fe3d0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fosslight_prechecker/_add.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def input_license_while_running():
124124
input_license = ""
125125

126126
logger.info("# Select a license to write in the license missing files ")
127-
select = input(" 1.MIT, 2.Apache-2.0, 3.LGE-Proprietary, 4.Manaully Input, 5.Not select now : ")
127+
select = input("\t1.MIT\n \t2.Apache-2.0\n \t3.LGE-Proprietary\n \t4.Manual Input\n \t5.Not select now\n- Choose one from the list: ")
128128
if select == '1' or select == 'MIT':
129129
input_license = 'MIT'
130130
elif select == '2' or select == 'Apache-2.0':
@@ -140,7 +140,7 @@ def input_license_while_running():
140140

141141
def input_copyright_while_running():
142142
input_copyright = ""
143-
input_copyright = input("# Input Copyright to write in the copyright missing files (ex, <year> <name>) : ")
143+
input_copyright = input("# Input Copyright to write in the copyright missing files (ex, <year> <name>): ")
144144
if input_copyright == 'Quit' or input_copyright == 'quit' or input_copyright == 'Q':
145145
return
146146

0 commit comments

Comments
 (0)