Просмотр исходного кода

Fixed a typo in the return message (#107)

Signed-off-by: Tuna Alaygut <alaygut@gmail.com>
Tuna Alaygut 4 лет назад
Родитель
Сommit
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__":