t-bug-catcher 0.5.6__tar.gz → 0.5.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/PKG-INFO +1 -1
  2. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/setup.cfg +1 -1
  3. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/setup.py +1 -1
  4. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/__init__.py +1 -1
  5. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/jira.py +1 -1
  6. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher.egg-info/PKG-INFO +1 -1
  7. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/MANIFEST.in +0 -0
  8. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/README.rst +0 -0
  9. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/pyproject.toml +0 -0
  10. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/requirements.txt +0 -0
  11. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/bug_catcher.py +0 -0
  12. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/bug_snag.py +0 -0
  13. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/config.py +0 -0
  14. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/exceptions.py +0 -0
  15. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/resources/whispers_config.yml +0 -0
  16. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/stack_saver.py +0 -0
  17. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/utils/__init__.py +0 -0
  18. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/utils/common.py +0 -0
  19. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/utils/logger.py +0 -0
  20. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher/workitems.py +0 -0
  21. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher.egg-info/SOURCES.txt +0 -0
  22. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher.egg-info/dependency_links.txt +0 -0
  23. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher.egg-info/not-zip-safe +0 -0
  24. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher.egg-info/requires.txt +0 -0
  25. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/t_bug_catcher.egg-info/top_level.txt +0 -0
  26. {t_bug_catcher-0.5.6 → t_bug_catcher-0.5.7}/tests/test_t_bug_catcher.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: t_bug_catcher
3
- Version: 0.5.6
3
+ Version: 0.5.7
4
4
  Summary: Bug catcher
5
5
  Home-page: https://www.thoughtful.ai/
6
6
  Author: Thoughtful
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.5.6
2
+ current_version = 0.5.7
3
3
  commit = True
4
4
  tag = False
5
5
 
@@ -26,7 +26,7 @@ setup(
26
26
  packages=find_packages(include=["t_bug_catcher", "t_bug_catcher.*"]),
27
27
  test_suite="tests",
28
28
  url="https://www.thoughtful.ai/",
29
- version="0.5.6",
29
+ version="0.5.7",
30
30
  zip_safe=False,
31
31
  install_requires=install_requirements,
32
32
  include_package_data=True,
@@ -3,7 +3,7 @@
3
3
  __author__ = """Thoughtful"""
4
4
  __email__ = "support@thoughtful.ai"
5
5
  # fmt: off
6
- __version__ = '0.5.6'
6
+ __version__ = '0.5.7'
7
7
  # fmt: on
8
8
 
9
9
  from .bug_catcher import (
@@ -1387,7 +1387,7 @@ class Jira:
1387
1387
  existing_ticket=existing_ticket,
1388
1388
  summary=summary,
1389
1389
  )
1390
- if os.path.exists(stack_trace):
1390
+ if stack_trace and os.path.exists(stack_trace):
1391
1391
  os.remove(stack_trace)
1392
1392
  return existing_ticket
1393
1393
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: t_bug_catcher
3
- Version: 0.5.6
3
+ Version: 0.5.7
4
4
  Summary: Bug catcher
5
5
  Home-page: https://www.thoughtful.ai/
6
6
  Author: Thoughtful
File without changes
File without changes