Skip to content

Commit a08ddec

Browse files
committed
Fix cmd_svn_info error
1 parent b8e261f commit a08ddec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/source_repo/svn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,13 @@ def _build_cli_commands(ctx: Context) -> dict:
216216
# Add authentication, if provided
217217
if username:
218218
arg_username = ["--username", username]
219-
cmd_svn_info += arg_username
219+
# cmd_svn_info += arg_username
220220
cmd_git_svn_init += arg_username
221221
cmd_git_svn_fetch += arg_username
222222

223223
if password:
224224
arg_password = ["--password", password]
225-
cmd_svn_info += arg_password
225+
# cmd_svn_info += arg_password
226226

227227

228228
## git svn commands

0 commit comments

Comments
 (0)