Skip to content

Commit

Permalink
fix: dd space in note title (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidt99 authored Apr 28, 2022
1 parent 4d470d6 commit fb84319
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.8.1
-------
- Add space in note title

1.8.0
-------
- Add on-premise compatability
Expand Down
2 changes: 1 addition & 1 deletion intezer_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.8.0'
__version__ = '1.8.1'
4 changes: 2 additions & 2 deletions intezer_sdk/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

def _get_title(short: bool) -> str:
if short:
return 'Intezer FileAnalysis: \n'
return ('Intezer FileAnalysis\n'
return 'Intezer Analysis: \n'
return ('Intezer File Analysis\n'
'=========================\n\n')


Expand Down

0 comments on commit fb84319

Please sign in to comment.