Skip to content

Commit

Permalink
remove upper() when declaring repo. title
Browse files Browse the repository at this point in the history
  • Loading branch information
Scstechr committed Aug 19, 2019
1 parent f370102 commit 985be13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def initialize(flag=False):

# README.md
readmepath = path.join(getcwd(), 'README.md')
title = prompt('Title of this repository(project)').upper()
title = prompt('Title of this repository(project)')
if path.exists(readmepath):
if confirm('Do you want to remove the existing README.md?'):
issues.execute([f'rm README.md'])
Expand Down

0 comments on commit 985be13

Please sign in to comment.