Skip to content

Commit 381be1e

Browse files
committed
FIX: Log message inconsistency.
1 parent bd00712 commit 381be1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def git_clone(repository, directory, branch=None):
112112
except subprocess.CalledProcessError:
113113
if os.path.exists(directory):
114114
shutil.rmtree(directory)
115-
logging.info("Cloning %s into %s", repository, repository)
115+
logging.info("Cloning %s into %s", repository, directory)
116116
os.makedirs(directory, mode=0o775)
117117
shell_out("git clone --depth 1 --no-single-branch {} {}".format(
118118
repository, directory))

0 commit comments

Comments
 (0)