Skip to content

Commit

Permalink
changed server
Browse files Browse the repository at this point in the history
  • Loading branch information
swissme8888 committed May 2, 2017
1 parent c000616 commit 3ba9a97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def upload_file():
result = {}
for i in retData:
for j in range(len(i[1])):
result[i[0]+"flipflop #"+str(j)]= i[1][j]
result[i[0]+"'s flipflop #"+str(j)]= i[1][j]
for j in range(len(i[2])):
result[i[0]+"consistent #"+str(j)]=i[2][j]
result[i[0]+"'s consistent #"+str(j)]=i[2][j]
return render_template("result.html",result = result)
# first cut file lenghts down the concat them

Expand Down

0 comments on commit 3ba9a97

Please # to comment.