Skip to content

Commit a465b4f

Browse files
committed
add --quiet argument to improve performance
1 parent b2f3ae8 commit a465b4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manic/repository_svn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def _svn_checkout(url, repo_dir_path, verbosity):
260260
"""
261261
Checkout a subversion repository (repo_url) to checkout_dir.
262262
"""
263-
cmd = ['svn', 'checkout', url, repo_dir_path]
263+
cmd = ['svn', 'checkout', '--quiet', url, repo_dir_path]
264264
if verbosity >= VERBOSITY_VERBOSE:
265265
printlog(' {0}'.format(' '.join(cmd)))
266266
execute_subprocess(cmd)

0 commit comments

Comments
 (0)