Skip to content

Commit

Permalink
More space among questions
Browse files Browse the repository at this point in the history
As questions can include now a more detailed help and types, it would be helpful to have them more spaced. It looks better.
  • Loading branch information
Jairo Llopis committed Mar 9, 2020
1 parent 97e5f30 commit 9dbad43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ will result in this series of questions:
<pre>
<b>name_of_the_project</b>? Format: yaml
🎤 [My awesome project]:
<b>number_of_eels</b>? Format: yaml
🎤 [1234]:
<b>your_email</b>? Format: yaml
🎤 []:
</pre>
Expand Down
2 changes: 1 addition & 1 deletion copier/config/user_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def query_user_data(
result[question] = default
continue
# Generate message to ask the user
message = f"{INDENT}{bold | question}? Format: {type_name}\n🎤 "
message = f"\n{INDENT}{bold | question}? Format: {type_name}\n🎤 "
if details.get("help"):
message = f"{info & italics | details['help']}\n{message}"
# Use the right method to ask
Expand Down

0 comments on commit 9dbad43

Please sign in to comment.