Skip to content

Commit

Permalink
Update hello.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hardikchopra242 authored Dec 12, 2020
1 parent b084582 commit d491121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def hello1():
return render_template("index.html", error="Number has to be greater than 0")

if int(request.form['len']) > 1000000:
return render_template("index.html", error="Number has to be less than 1 million")
return render_template("index.html", error="Number has to be less than 1,000,000")

len = request.form['len']
seq = ''.join([random.choice(nucleotide)
Expand Down

0 comments on commit d491121

Please sign in to comment.