[med-svn] [Git][med-team/bcalm][master] Maybe enforce str() to fix issue?
Shayan Doust
gitlab at salsa.debian.org
Fri Sep 27 18:08:39 BST 2019
Shayan Doust pushed to branch master at Debian Med / bcalm
Commits:
ebec2d11 by Shayan Doust at 2019-09-27T01:32:54Z
Maybe enforce str() to fix issue?
- - - - -
1 changed file:
- debian/missing-sources/compare_fasta.py
Changes:
=====================================
debian/missing-sources/compare_fasta.py
=====================================
@@ -14,7 +14,7 @@ def read_seqs(fasta):
seqs = set()
for line in open(fasta):
if line[0] == '>': continue
- seqs.add(normalize(line.strip()))
+ seqs.add(normalize(str(line.strip())))
return seqs
s1 = read_seqs(fasta1)
View it on GitLab: https://salsa.debian.org/med-team/bcalm/commit/ebec2d11acf222ed08fc21a2a6075d5b0a70e5f9
--
View it on GitLab: https://salsa.debian.org/med-team/bcalm/commit/ebec2d11acf222ed08fc21a2a6075d5b0a70e5f9
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20190927/29ace6db/attachment.html>
More information about the debian-med-commit
mailing list