This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
lesspass
mirror of
https://github.com/lesspass/lesspass.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
67
Wiki
Activity
Browse Source
encode password into bytearray for piping to system copy into clipboard command (
#488
)
pull/492/head
leo-stone
5 years ago
committed by
Guillaume Vincent
parent
73b09ec5e9
commit
999e5e2d6d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
cli/lesspass/clipboard.py
+ 1
- 1
cli/lesspass/clipboard.py
View File
@@ -46,4 +46,4 @@ def copy(text):
p = _popen(args)
else:
p = _popen(args, close_fds=True)
p.communicate(input=text)
p.communicate(input=text
.encode('ascii')
)
Write
Preview
Loading…
Cancel
Save