Skip to content
Snippets Groups Projects
Commit 94bb67e1 authored by Laros's avatar Laros
Browse files

Fixed a bug in the __locationList2posList() function.


git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@110 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent f2777d29
No related branches found
No related tags found
No related merge requests found
......@@ -85,8 +85,10 @@ class GBparser() :
break
#if
temp = self.__location2pos(i.location)
ret.append(temp[0])
ret.append(temp[1])
if temp :
ret.append(temp[0])
ret.append(temp[1])
#if
#for
return ret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment