summaryrefslogtreecommitdiffstats
path: root/repo
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2020-12-11 03:26:42 -0500
committerMike Frysinger <vapier@google.com>2020-12-11 17:55:38 +0000
commit0a849b660ff30968454e5a9c79da759da86e7402 (patch)
treec78fea82696b00f03aec8d431db05ba655075654 /repo
parent5e2f32fe1398ba1dbdee81a248ab88d6f269002d (diff)
downloadgit-repo-0a849b660ff30968454e5a9c79da759da86e7402.tar.gz
replace javadoc docs with standard python style
We don't use javadoc in this project, so clean up the few places that slipped in with the gitc code. Change-Id: Ia365fb2d1e3188ad16b2f65b1a3b7e8466001946 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/291262 Reviewed-by: Michael Mortensen <mmortensen@google.com> Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'repo')
-rwxr-xr-xrepo6
1 files changed, 4 insertions, 2 deletions
diff --git a/repo b/repo
index b13e34c6..f1b15c5f 100755
--- a/repo
+++ b/repo
@@ -439,9 +439,11 @@ def get_gitc_manifest_dir():
439def gitc_parse_clientdir(gitc_fs_path): 439def gitc_parse_clientdir(gitc_fs_path):
440 """Parse a path in the GITC FS and return its client name. 440 """Parse a path in the GITC FS and return its client name.
441 441
442 @param gitc_fs_path: A subdirectory path within the GITC_FS_ROOT_DIR. 442 Args:
443 gitc_fs_path: A subdirectory path within the GITC_FS_ROOT_DIR.
443 444
444 @returns: The GITC client name 445 Returns:
446 The GITC client name.
445 """ 447 """
446 if gitc_fs_path == GITC_FS_ROOT_DIR: 448 if gitc_fs_path == GITC_FS_ROOT_DIR:
447 return None 449 return None