Skip to content

Commit c9f9cb2

Browse files
committedFeb 25, 2019
Fix merge
1 parent 62575d6 commit c9f9cb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎lib/BtIO.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ def readYaml(infile):
743743
with open(infile) as fh:
744744
str = "".join(fh.readlines())
745745
try:
746-
data = yaml.load(str)
746+
data = yaml.safeload(str)
747747
except yaml.YAMLError:
748748
BtLog.error('37', infile, "yaml")
749749
return data

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ docopt
22
matplotlib
33
tqdm
44
pysam
5-
pyyaml>=4.2b1
5+
yaml

0 commit comments

Comments
 (0)
Please sign in to comment.