tangled
alpha
login
or
join now
wish13yt.github.io
/
pistributed
0
fork
atom
Distributed and decentralized pi calculation
0
fork
atom
overview
issues
pulls
pipelines
fix
wish13yt.github.io
6 months ago
21377edf
f1c0a9d4
+1
-1
1 changed file
expand all
collapse all
unified
split
src
server
app.py
+1
-1
src/server/app.py
···
58
58
if request.method == 'GET':
59
59
ver = open("ver.txt", "r")
60
60
version = ver.read()
61
61
-
return render_template('index.html', pi=piresult, name=name, email=email, version=version, pilen=pilen)
61
61
+
return render_template('index.html', pi=piresult, name=name, email=email, version=version, pilen=str(pilen))
62
62
else:
63
63
return "Please use GET to access this page."
64
64