Decode cwd as utf-8

This commit is contained in:
Sage Vaillancourt 2022-10-03 14:54:49 -04:00
parent 97e04a01a7
commit f09d86d9d7
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ def git_update() -> None:
@writing_blueprint.route('/status', methods=['GET']) @writing_blueprint.route('/status', methods=['GET'])
def status_page() -> Response: def status_page() -> Response:
status_message = f"Currently running on '{os.environ.get('UNDERCOVER_SERVER_NAME')}' server" status_message = f"Currently running on '{os.environ.get('UNDERCOVER_SERVER_NAME')}' server"
current_git_hash = subprocess.check_output(['pwd']) current_git_hash = subprocess.check_output(['pwd']).decode('utf-8')
#current_git_hash = subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD'], shell=True, universal_newlines=True) #current_git_hash = subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD'], shell=True, universal_newlines=True)
return make_response(render_template('error.jinja2', status=200, error_text=status_message, extra_text=current_git_hash), 200) return make_response(render_template('error.jinja2', status=200, error_text=status_message, extra_text=current_git_hash), 200)