Skip to content

Commit a83b98b

Browse files
some help text fixes (#456)
1 parent ef9d41d commit a83b98b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.azure-pipelines/templates/setup-ci-machine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
steps:
22
- script: python -m pip install --upgrade pip
33
displayName: 'Upgrade pip'
4-
- script: pip install wheel
4+
- script: pip install wheel==0.30.0
55
displayName: 'Install Wheel'
66
- script: pip install pytest
77
displayName: 'Install pytest'

azure-devops/azext_devops/dev/repos/arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def load_code_arguments(self, _):
8181
with self.argument_context('repos policy file-size') as context:
8282
context.argument('maximum_git_blob_size',
8383
help='Maximum git blob size in bytes. ' +
84-
'For example, to specify a 10byte limit, --maximum-git-blob-size 1024.')
84+
'For example, to specify a 10byte limit, --maximum-git-blob-size 10.')
8585
context.argument('use_uncompressed_size', arg_type=get_enum_type(_TRUE_FALSE_SWITCH),
8686
help='Whether to use uncompressed size.')
8787

azure-devops/azext_devops/dev/repos/policy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
def list_policy(organization=None, project=None, repository_id=None, branch=None, detect=None):
21-
"""List all branch policies in a project.
21+
"""List all policies in a project.
2222
:param repository_id: Id (UUID) of the repository.
2323
:type repository_id: string
2424
:param branch: Branch. (--repository-id is required)

0 commit comments

Comments
 (0)