Browse Source

Remove unused exception variable

pull/551/head
Kcchouette 4 years ago
committed by Guillaume Vincent
parent
commit
f6c7304490
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cli/lesspass/core.py

+ 1
- 1
cli/lesspass/core.py View File

@@ -56,7 +56,7 @@ def main(args=sys.argv[1:]):
try: try:
copy(generated_password) copy(generated_password)
print("Copied to clipboard") print("Copied to clipboard")
except Exception as e:
except Exception:
print("Copy failed, we are sorry") print("Copy failed, we are sorry")
print("Can you send us an email at contact@lesspass.com\n") print("Can you send us an email at contact@lesspass.com\n")
print("-" * 80) print("-" * 80)


Loading…
Cancel
Save