This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new e7d4ed6 Capitalise python
e7d4ed6 is described below
commit e7d4ed601542c62ed649837b44924dcda6016cc9
Author: Sebb <[email protected]>
AuthorDate: Tue Nov 16 00:46:41 2021 +0000
Capitalise python
---
README.md | 4 ++--
tools/setup.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index aca21fb..9b4d10b 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ _Next generation suite of services and tools for Apache Pony
Mail_
This repository aims to contain the next generation of Apache Pony Mail,
-a pure python version of Apache Pony Mail with support for ElasticSearch
+a pure Python version of Apache Pony Mail with support for ElasticSearch
7.x and above.
@@ -19,7 +19,7 @@ Among other things, Foal sports the following new features:
* Improved archiver and import tools
* New, sleeker UI for the end user
* Migration tools for moving to Foal
-* 100% python backend, no Lua required
+* 100% Python backend, no Lua required
* In-place editing of emails via web UI
## Installation Guide
diff --git a/tools/setup.py b/tools/setup.py
index 750048c..540ece4 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -81,7 +81,7 @@ def create_indices():
print(f"Index {dbname}-{index} created! %s " % res)
-# Check for all required python packages
+# Check for all required Python packages
wanted_pkgs = [
"elasticsearch", # used by setup.py, archiver.py and elastic.py
"formatflowed", # used by archiver.py
@@ -95,7 +95,7 @@ for pkg in wanted_pkgs:
missing_pkgs.remove(pkg)
if missing_pkgs:
- print("It looks like you need to install some python modules first")
+ print("It looks like you need to install some Python modules first")
print("The following packages are required: ")
for pkg in missing_pkgs:
print(" - %s" % pkg)