Skip to content

Commit a12a61c

Browse files
committed
Minor typo fix
1 parent bee4106 commit a12a61c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dfetch/vcs/svn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
def get_svn_version() -> tuple[str, str]:
18-
"""Get the name and version of git."""
18+
"""Get the name and version of svn."""
1919
result = run_on_cmdline(logger, ["svn", "--version", "--non-interactive"])
2020
first_line = result.stdout.decode().split("\n")[0]
2121
tool, version = first_line.replace(",", "").split("version", maxsplit=1)
@@ -39,7 +39,7 @@ class SvnRemote:
3939
"""A remote svn repository."""
4040

4141
def __init__(self, remote: str) -> None:
42-
"""Create a git remote repo."""
42+
"""Create a svn remote repo."""
4343
self._remote = remote
4444

4545
def is_svn(self) -> bool:

0 commit comments

Comments
 (0)