Skip to content

Commit

Permalink
add --quiet argument to improve performance
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Apr 13, 2018
1 parent b2f3ae8 commit a465b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manic/repository_svn.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def _svn_checkout(url, repo_dir_path, verbosity):
"""
Checkout a subversion repository (repo_url) to checkout_dir.
"""
cmd = ['svn', 'checkout', url, repo_dir_path]
cmd = ['svn', 'checkout', '--quiet', url, repo_dir_path]
if verbosity >= VERBOSITY_VERBOSE:
printlog(' {0}'.format(' '.join(cmd)))
execute_subprocess(cmd)
Expand Down

0 comments on commit a465b4f

Please sign in to comment.