소스 검색

Fixed a typo in the return message (#107)

Signed-off-by: Tuna Alaygut <alaygut@gmail.com>
Tuna Alaygut 5 년 전
부모
커밋
d0769851bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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__":