diff mbox series

[09/17] patman: Convert camel case in project.py

Message ID 20220129211420.528117-10-sjg@chromium.org
State Accepted
Commit 642df431d51ea179a7473810bbfec0d81f8d37a8
Delegated to: Simon Glass
Headers show
Series patman: Convert camel case | expand

Commit Message

Simon Glass Jan. 29, 2022, 9:14 p.m. UTC
Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/patman/main.py    | 2 +-
 tools/patman/project.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Simon Glass Feb. 8, 2022, 8:39 p.m. UTC | #1
Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/patman/main.py    | 2 +-
 tools/patman/project.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/tools/patman/main.py b/tools/patman/main.py
index 393ef7cf4c7..c75e8c4f51d 100755
--- a/tools/patman/main.py
+++ b/tools/patman/main.py
@@ -42,7 +42,7 @@  parser.add_argument('-e', '--end', type=int, default=0,
     help='Commits to skip at end of patch list')
 parser.add_argument('-D', '--debug', action='store_true',
     help='Enabling debugging (provides a full traceback on error)')
-parser.add_argument('-p', '--project', default=project.DetectProject(),
+parser.add_argument('-p', '--project', default=project.detect_project(),
                     help="Project name; affects default option values and "
                     "aliases [default: %(default)s]")
 parser.add_argument('-P', '--patchwork-url',
diff --git a/tools/patman/project.py b/tools/patman/project.py
index 641e2d68520..4459042b5d4 100644
--- a/tools/patman/project.py
+++ b/tools/patman/project.py
@@ -6,7 +6,7 @@  import os.path
 
 from patman import gitutil
 
-def DetectProject():
+def detect_project():
     """Autodetect the name of the current project.
 
     This looks for signature files/directories that are unlikely to exist except