Skip to content

Commit 5a22181

Browse files
committed
add missing var
1 parent 767fc86 commit 5a22181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/repo.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -788,9 +788,9 @@ fn (mut r Repo) clone() {
788788
}
789789

790790
fn (r &Repo) read_file(branch string, path string) string {
791-
// valid_path := path.trim_string_left('/')
791+
valid_path := path.trim_string_left('/')
792792

793-
println('yEPP path=${valid_path}')
793+
println('read_file() path=${valid_path}')
794794
if r.git_repo == unsafe { nil } {
795795
return 'nil'
796796
}

0 commit comments

Comments
 (0)