We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9486d13 commit 2d366e9Copy full SHA for 2d366e9
src/sentry/runner/__init__.py
@@ -11,8 +11,14 @@
11
import click
12
import sys
13
import sentry
14
+import datetime
15
from sentry.utils.imports import import_string
16
17
+
18
+# We need to run this here because of a concurrency bug in Python's locale
19
+# with the lazy initialization.
20
+datetime.datetime.strptime('', '')
21
22
# Parse out a pretty version for use with --version
23
if sentry.__build__ is None:
24
version_string = sentry.VERSION
src/sentry/wsgi.py
@@ -11,6 +11,7 @@
import os.path
# Add the project to the python path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir))
0 commit comments