Skip to content

Commit 1812e6d

Browse files
committed
Bug fix logger message when checkout is not Non
1 parent 68c4f67 commit 1812e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unity_app_generator/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _localize_source(self, source, dest, checkout):
4646
git_mgr = GitManager(source, dest)
4747

4848
if checkout is not None:
49-
logger.info(f"Checking out {checkout} in {repo_dir}")
49+
logger.info(f"Checking out {checkout} in {dest}")
5050
git_mgr.checkout(checkout)
5151

5252
return git_mgr

0 commit comments

Comments
 (0)