Skip to content

Commit

Permalink
fix pysqlcipher3 import check
Browse files Browse the repository at this point in the history
  • Loading branch information
carderne committed Jul 14, 2024
1 parent 6a5f7ef commit c097cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sigexport/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def main(
data = {"convos": convos_dict, "contacts": contacts_dict}
print(DATA_DELIM, json.dumps(data), DATA_DELIM)
raise Exit()
except Exception:
except (ImportError, ModuleNotFoundError):
secho("You set 'no-use-docker' but `pysqlcipher3` not installed properly")
sys.exit(1)

Expand Down

0 comments on commit c097cf2

Please sign in to comment.