Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,8 @@ def localClass(cls):
|
|
22 |
cls = cls
|
23 |
return cls
|
24 |
|
25 |
-
def getStatus(msg):
|
|
|
26 |
if "Current Status:" in msg:
|
27 |
start_index = msg.index("Current Status:") + len("Current Status:")
|
28 |
end_index = msg.index("Description:")
|
|
|
22 |
cls = cls
|
23 |
return cls
|
24 |
|
25 |
+
def getStatus(msg):
|
26 |
+
new_content = msg
|
27 |
if "Current Status:" in msg:
|
28 |
start_index = msg.index("Current Status:") + len("Current Status:")
|
29 |
end_index = msg.index("Description:")
|