Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cli
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
funkwhale
cli
Commits
0bafe5cb
Commit
0bafe5cb
authored
5 years ago
by
Adrian Petrescu
Browse files
Options
Downloads
Patches
Plain Diff
Fix hack incompatibility with cryptfile keyring
parent
eeb60fa7
Branches
Branches containing commit
Tags
0.19.0
Tags containing commit
1 merge request
!8
Fix hack incompatibility with cryptfile keyring
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
funkwhale_cli/cli/auth.py
+4
-1
4 additions, 1 deletion
funkwhale_cli/cli/auth.py
with
4 additions
and
1 deletion
funkwhale_cli/cli/auth.py
+
4
−
1
View file @
0bafe5cb
...
@@ -57,7 +57,10 @@ class lazy_credential:
...
@@ -57,7 +57,10 @@ class lazy_credential:
def
init_keyring
():
def
init_keyring
():
# small hack to fix some weird issues with pyinstaller and keyring
# small hack to fix some weird issues with pyinstaller and keyring
# there seems to be a cache issue somewhere
# there seems to be a cache issue somewhere
try
:
del
keyring
.
backend
.
get_all_keyring
.
__wrapped__
.
always_returns
del
keyring
.
backend
.
get_all_keyring
.
__wrapped__
.
always_returns
except
AttributeError
:
pass
keyring
.
core
.
init_backend
()
keyring
.
core
.
init_backend
()
# /end of hack
# /end of hack
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment