Skip to content

Commit

Permalink
Fix crash that happens if gpgme is not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
micahflee committed Jun 20, 2017
1 parent e9d2b1c commit b60187e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions torbrowser_launcher/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

try:
import gpg
gpgme_support = True
except ImportError:
gpgme_support = False

Expand Down
1 change: 1 addition & 0 deletions torbrowser_launcher/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

try:
import gpg
gpgme_support = True
except ImportError:
gpgme_support = False

Expand Down

0 comments on commit b60187e

Please sign in to comment.