shelltastic 0.4.6__tar.gz → 0.4.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 (21) hide show
  1. {shelltastic-0.4.6 → shelltastic-0.4.7}/PKG-INFO +1 -1
  2. {shelltastic-0.4.6 → shelltastic-0.4.7}/pyproject.toml +1 -1
  3. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/display.py +1 -1
  4. {shelltastic-0.4.6 → shelltastic-0.4.7}/LICENSE +0 -0
  5. {shelltastic-0.4.6 → shelltastic-0.4.7}/README.md +0 -0
  6. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/__init__.py +0 -0
  7. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/backend/__init__.py +0 -0
  8. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/backend/base.py +0 -0
  9. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/backend/default/__init__.py +0 -0
  10. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/backend/default/common.py +0 -0
  11. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/backend/default/local.py +0 -0
  12. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/backend/default/remote.py +0 -0
  13. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/enum.py +0 -0
  14. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/exception.py +0 -0
  15. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/frontend/__init__.py +0 -0
  16. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/frontend/common.py +0 -0
  17. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/frontend/git.py +0 -0
  18. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/frontend/scp.py +0 -0
  19. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/frontend/shell.py +0 -0
  20. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/host.py +0 -0
  21. {shelltastic-0.4.6 → shelltastic-0.4.7}/src/shelltastic/result.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shelltastic
3
- Version: 0.4.6
3
+ Version: 0.4.7
4
4
  Summary: A fantastic shell command runner for python
5
5
  Author: Bearmine
6
6
  License-Expression: MPL-2.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "shelltastic"
3
- version = "0.4.6"
3
+ version = "0.4.7"
4
4
  description = "A fantastic shell command runner for python"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -45,7 +45,7 @@ class LogDisplay(IODisplay):
45
45
  self.log_level = log_level
46
46
 
47
47
  def _emit_line(self, msg: object, *args: object):
48
- LOGGER.log(self.log_level, msg, *args, stacklevel=2)
48
+ LOGGER.log(self.log_level, msg, *args, stacklevel=3)
49
49
 
50
50
 
51
51
  class CriticalLogDisplay(LogDisplay):
File without changes
File without changes