Skip to content

Commit

Permalink
Add padding after questions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlafuente committed Nov 12, 2016
1 parent d0a1909 commit 1231d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datapaka
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ while another:
source_url = raw_input(Style.BRIGHT + "Source URL? ")
dp.descriptor['sources'].append({"name": source_name, "web": source_url})
print
add_another = raw_input(Style.BRIGHT + "Add another source? [n]")
add_another = raw_input(Style.BRIGHT + "Add another source? [n] ")
if add_another not in ("y", "Y"):
another = False

Expand All @@ -134,7 +134,7 @@ while another:
c["web"] = contrib_url
dp.descriptor['contributors'].append(c)
print
add_another = raw_input(Style.BRIGHT + "Add another contributor? [n]")
add_another = raw_input(Style.BRIGHT + "Add another contributor? [n] ")
if add_another not in ("y", "Y"):
another = False

Expand Down

0 comments on commit 1231d54

Please sign in to comment.