From e2bda4aeb1c8b9e5c9c3531c3e688dde38cb0c56 Mon Sep 17 00:00:00 2001
From: Matthew David Pitkin <matthew.pitkin@ligo.org>
Date: Tue, 3 Sep 2019 09:07:22 -0500
Subject: [PATCH] Fix reading of latex_labels in prior file to avoid multiple
 escape characters

---
 bilby/core/prior.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bilby/core/prior.py b/bilby/core/prior.py
index 9ea0b1934..feea50a5c 100644
--- a/bilby/core/prior.py
+++ b/bilby/core/prior.py
@@ -6,6 +6,7 @@ import os
 from collections import OrderedDict
 from future.utils import iteritems
 import json
+from io import open as ioopen
 
 import numpy as np
 import scipy.stats
@@ -149,7 +150,7 @@ class PriorDict(OrderedDict):
         comments = ['#', '\n']
         prior = dict()
         mvgdict = dict(inf=np.inf)  # evaluate inf as np.inf
-        with open(filename, 'r') as f:
+        with ioopen(filename, 'r', encoding='unicode_escape') as f:
             for line in f:
                 if line[0] in comments:
                     continue
-- 
GitLab