Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ HTML_TEMPLATE = """<!DOCTYPE html>
|
|
| 26 |
<p class="claim">{claim_url}</p>
|
| 27 |
</div>
|
| 28 |
<div class="box">
|
| 29 |
-
<h3>📜 Live Console Output
|
| 30 |
<pre>{logs}</pre>
|
| 31 |
</div>
|
| 32 |
</body>
|
|
@@ -35,8 +35,8 @@ HTML_TEMPLATE = """<!DOCTYPE html>
|
|
| 35 |
|
| 36 |
class Handler(http.server.SimpleHTTPRequestHandler):
|
| 37 |
def do_GET(self):
|
| 38 |
-
logs = "
|
| 39 |
-
claim_url = "Waiting for playit.gg
|
| 40 |
|
| 41 |
if os.path.exists(LOG_FILE):
|
| 42 |
try:
|
|
|
|
| 26 |
<p class="claim">{claim_url}</p>
|
| 27 |
</div>
|
| 28 |
<div class="box">
|
| 29 |
+
<h3>📜 Live Console Output:</h3>
|
| 30 |
<pre>{logs}</pre>
|
| 31 |
</div>
|
| 32 |
</body>
|
|
|
|
| 35 |
|
| 36 |
class Handler(http.server.SimpleHTTPRequestHandler):
|
| 37 |
def do_GET(self):
|
| 38 |
+
logs = "Starting Bedrock..."
|
| 39 |
+
claim_url = "Waiting for playit.gg claim link..."
|
| 40 |
|
| 41 |
if os.path.exists(LOG_FILE):
|
| 42 |
try:
|