File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,14 +49,14 @@ The easier way to run this project is using docker:
49
49
50
50
Run example; notice `source` and `my_catalogue` need to be replace with your destinations:
51
51
52
- docker run --rm -v $(pwd)/source:/input:ro -v $(pwd)/my_catalogue:/output iago1460/catalogue:1.2.1 --src /input --dst /output --operation copy
52
+ docker run --rm -v $(pwd)/source:/input:ro -v $(pwd)/my_catalogue:/output iago1460/catalogue:1.2.2 --src /input --dst /output --operation copy
53
53
54
54
55
55
### In a virtual environment
56
56
57
57
virtualenv venv
58
58
source venv/bin/activate
59
- pip3 install https://github.com/iago1460/photo-cataloguer/archive/1.2.1 .zip
59
+ pip3 install https://github.com/iago1460/photo-cataloguer/archive/1.2.2 .zip
60
60
catalogue --help
61
61
62
62
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def unsubscribe(self, observer):
28
28
self ._observers .remove (observer )
29
29
30
30
def notify (self , * args ):
31
- for observer in self ._observers :
31
+ for observer in list ( self ._observers ) :
32
32
observer .notify (self , * args )
33
33
34
34
You can’t perform that action at this time.
0 commit comments