Skip to content

Commit 47429bc

Browse files
committed
xxx
1 parent 5cff995 commit 47429bc

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

main.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ def main():
2020
try:
2121
files = []
2222
for p in Path("./").iterdir():
23-
#files.append(p.name)
24-
log_message(f"{p.name}=OMG")
25-
26-
#all_files = ",".join(files)
27-
#log_message(f"FILES_LISTING_1={all_files}")
23+
files.append(p.name)
24+
all_files = ",".join(files)
25+
log_message(f"FILES_LISTING_1='{all_files}'")
2826

2927
log_message("MY_VAR1=foo")
3028
log_message("MY_VAR2=bar")

0 commit comments

Comments
 (0)