Skip to content
Snippets Groups Projects
Commit 4bfe05dc authored by Damian Johnson's avatar Damian Johnson
Browse files

Provide a nicer error when sqlite3 is unavailable

Oops! Turns out this isn't available by default on FreeBSD or Gentoo. Providing
a nicer notice, encouraging folks to contact us so we can provide per-platform
suggestions for how to get it.
parent bcb01229
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,6 @@ import contextlib
import distutils.spawn
import os
import platform
import sqlite3
import sys
import threading
import time
......@@ -60,6 +59,29 @@ import stem.util.log
import stem.util.system
import stem.util.tor_tools
SQLITE_UNAVAILABLE = """\
Python's sqlite3 module is unavailable. Unfortunatley some platforms
don't bundle this with the interpreter. Please let us know at...
https://trac.torproject.org/projects/tor/wiki/doc/nyx/bugs
"""
SQLITE_UNAVAILABLE_FREEBSD = """\
Python's sqlite3 module is unavailable. Please run...
sudo pkg install py27-sqlite3
"""
try:
import sqlite3
except ImportError:
if stem.util.system.is_bsd():
print(SQLITE_UNAVAILABLE_FREEBSD)
else:
print(SQLITE_UNAVAILABLE)
sys.exit(1)
__version__ = '1.4.6-dev'
__release_date__ = 'April 28, 2011'
__author__ = 'Damian Johnson'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment