File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ This will result in sending a message to *#pypyrchannel* with text:
8282
8383Escape literal curly braces with doubles: {{ for {, }} for }
8484
85- See a worked example `for substitions here
85+ See a worked example `for substitutions here
8686<https://github.com/pypyr/pypyr-example/tree/master/pipelines/substitutions.yaml> `__.
8787
8888Sample pipeline
Original file line number Diff line number Diff line change 33All pypyrslack specific exceptions derive from pypyr root Error.
44"""
55
6- from pypyr .errors import Error as PypyrError
6+ from pypyr .errors import PlugInError
77
88
9- class Error (PypyrError ):
9+ class Error (PlugInError ):
1010 """Base class for all pypyr exceptions."""
1111
1212
Original file line number Diff line number Diff line change 22
33import platform
44
5- __version__ = '0.2.1 '
5+ __version__ = '0.3.0 '
66
77
88def get_version ():
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.2.1
2+ current_version = 0.3.0
33
44[bdist_wheel]
55universal = 0
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def test_base_error_raises():
1111 with pytest .raises (PypyrSlackError ) as err_info :
1212 raise PypyrSlackError ("this is error text right here" )
1313
14- assert repr (err_info .value ) == ("PypySlackError ('this is error text "
14+ assert repr (err_info .value ) == ("Error ('this is error text "
1515 "right here',)" )
1616
1717
You can’t perform that action at this time.
0 commit comments