Skip to content

Commit aa9dcef

Browse files
authored
Merge pull request #16 from Integration-Automation/dev
Add back print execute event and update dev version
2 parents 756bb03 + b015793 commit aa9dcef

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

dev.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "automation_file_dev"
9-
version = "0.0.8"
9+
version = "0.0.9"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]

file_automation/utils/executor/action_executor.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ def execute_action(self, action_list: [list, dict]) -> dict:
111111
)
112112
execute_record = "execute: " + str(action)
113113
execute_record_dict.update({execute_record: repr(error)})
114+
for key, value in execute_record_dict.items():
115+
print(key, flush=True)
116+
print(value, flush=True)
114117
return execute_record_dict
115118

116119
def execute_files(self, execute_files_list: list) -> list:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "automation_file"
9-
version = "0.0.7"
9+
version = "0.0.8"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]

0 commit comments

Comments
 (0)