Skip to content

Commit 020ac41

Browse files
fix readme
1 parent 629bbbf commit 020ac41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import docker_patch
1919
def patcher_func(container):
2020
print(f'patch container "{container}"')
2121

22-
container.exec_run('/bin/sh -c "echo \"hi from patch function!\" >> patched.txt"')
22+
container.exec_run('/bin/sh -c \'echo "hi from module 1" >> patched.txt\'')
2323
```
2424

2525
You can register multiple patchers, and then use it in one of these options:

docker_patch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
registered_patchers: typing.List[typing.Callable] = []
99

1010

11-
__version__ = '0.1'
11+
__version__ = '0.1.1'
1212

1313

1414
def default_on_error(e: Exception):

0 commit comments

Comments
 (0)