1
0
Fork 0
mirror of https://github.com/ejwa/gitinspector.git synced 2025-03-26 02:01:27 +01:00
This commit is contained in:
Alexander Lercher 2024-04-30 14:38:10 +02:00 committed by GitHub
commit 2f89cb0ff7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -6,3 +6,4 @@ node_modules
*.egg-info
*.pyc
*.tgz
**/.DS_Store

View file

@ -68,7 +68,7 @@ def init():
__enabled__ = True
__installed__ = True
__translation__.install(True)
__translation__.install()
def check_compatibility(version):
if isinstance(__translation__, gettext.GNUTranslations):
@ -103,4 +103,4 @@ def disable():
__enabled__ = False
if __installed__:
gettext.NullTranslations().install(True)
gettext.NullTranslations().install()