mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
101 B
Python
Executable file
7 lines
101 B
Python
Executable file
import sys
|
|
try:
|
|
import pymongo
|
|
sys.exit(0)
|
|
except Exception as exc:
|
|
sys.exit(-1)
|
|
|