Skip to content

Commit b64602e

Browse files
committed
Please?
1 parent e802ced commit b64602e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxstar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
config = os.path.join(app.config.get('ROOT_DIR', os.getcwd()), 'config.py')
7171
app.config.from_pyfile(config)
7272
app.config['GIT_REVISION'] = (
73-
subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode('utf-8').rstrip()
73+
subprocess.check_output('git rev-parse --short HEAD', shell=True).decode('utf-8').rstrip()
7474
)
7575

7676
# Sentry setup

0 commit comments

Comments
 (0)