Sfoglia il codice sorgente

Fixed a typo in the return message (#107)

Signed-off-by: Tuna Alaygut <alaygut@gmail.com>
Tuna Alaygut 5 anni fa
parent
commit
d0769851bc
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      nginx-flask-mongo/flask/server.py

+ 1 - 1
nginx-flask-mongo/flask/server.py

@@ -14,7 +14,7 @@ def todo():
         client.admin.command('ismaster')
     except:
         return "Server not available"
-    return "Hello fom the MongoDB client!\n"
+    return "Hello from the MongoDB client!\n"
 
 
 if __name__ == "__main__":