Browse Source

Fixed a typo in the return message (#107)

Signed-off-by: Tuna Alaygut <alaygut@gmail.com>
Tuna Alaygut 4 years ago
parent
commit
d0769851bc
1 changed files with 1 additions and 1 deletions
  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__":