mirror of
https://github.com/inventree/InvenTree.git
synced 2026-07-04 14:10:52 +00:00
Suppress dulwich warnings (#12163)
- Prevent erroneous dulwich warning messages
This commit is contained in:
@@ -55,6 +55,10 @@ try:
|
||||
except (KeyError, IndexError):
|
||||
logger.warning('INVE-W1: Current branch could not be detected.')
|
||||
main_branch = None
|
||||
|
||||
if main_repo is not None:
|
||||
main_repo.close()
|
||||
main_repo = None
|
||||
except ImportError:
|
||||
logger.warning(
|
||||
'INVE-W2: Dulwich module not found, git information will not be available.'
|
||||
|
||||
@@ -147,6 +147,7 @@ def get_git_log(path):
|
||||
datetime.datetime.fromtimestamp(commit.author_time).isoformat(),
|
||||
commit.message.decode().split('\n')[0],
|
||||
]
|
||||
repo.close()
|
||||
except KeyError:
|
||||
logger.debug('No HEAD tag found in git repo at path %s', path)
|
||||
except NotGitRepository:
|
||||
|
||||
Reference in New Issue
Block a user