patman: Convert camel case in project.py

Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2022-01-29 14:14:12 -07:00
parent 0157b187f4
commit 642df431d5
2 changed files with 2 additions and 2 deletions

View file

@ -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',

View file

@ -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