Skip to content

Commit 5f9bbcf

Browse files
committed
Add back print execute event and update dev version
Add back print execute event and update dev version
1 parent ed869a7 commit 5f9bbcf

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

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

dev.toml renamed to stable.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

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

0 commit comments

Comments
 (0)