diff --git a/cpasswords/client.py b/cpasswords/client.py index 8fd69281581fc2a75840d02a22223ae885f98bb0..6d464936ec9df7b627b3eac786c10b51c8da35d7 100755 --- a/cpasswords/client.py +++ b/cpasswords/client.py @@ -455,7 +455,7 @@ def show_file(options): def showqr(secret): qrencode = subprocess.Popen(['/usr/bin/qrencode', '-o', '-'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) - feh = subprocess.Popen(['/usr/bin/feh', '--zoom', 'fill' '-'], + feh = subprocess.Popen(['/usr/bin/feh', '-'], stdin=qrencode.stdout) qrencode.stdin.write(secret.encode('utf-8')) qrencode.stdin.flush()