Skip to content
This repository was archived by the owner on Jul 28, 2020. It is now read-only.

Commit 7ee695f

Browse files
authored
Merge pull request #33 from zenaton/fix-typo
Fix typo in client.py
2 parents 6317beb + 4f5c0c3 commit 7ee695f

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414

1515
### Security
1616

17+
## [0.3.3] - 2019-06-25
18+
19+
## Fixed
20+
- Fix a typo in client.py that prevents correct executions of versions
21+
1722
## [0.3.2] - 2019-06-21
1823

1924
## Fixed

zenaton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.2'
1+
__version__ = '0.3.3'

zenaton/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def parse_custom_id_from(self, flow):
203203
return custom_id
204204

205205
def canonical_name(self, flow):
206-
return type(flow).__name__ if isintance(flow, Version) else None
206+
return type(flow).__name__ if isinstance(flow, Version) else None
207207

208208
def class_name(self, flow):
209209
if issubclass(type(flow), Version):

0 commit comments

Comments
 (0)