Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cli
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
funkwhale
cli
Commits
e3148c74
Commit
e3148c74
authored
Apr 09, 2020
by
Agate
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'cryptfile-hack' into 'master'
Fix hack incompatibility with cryptfile keyring See merge request
!8
parents
eeb60fa7
0bafe5cb
Pipeline
#10262
failed with stages
in 2 minutes and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
funkwhale_cli/cli/auth.py
funkwhale_cli/cli/auth.py
+4
-1
No files found.
funkwhale_cli/cli/auth.py
View file @
e3148c74
...
@@ -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
del
keyring
.
backend
.
get_all_keyring
.
__wrapped__
.
always_returns
try
:
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment