diff options
Diffstat (limited to 'skate')
-rw-r--r-- | skate/url.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/url.go b/skate/url.go index 17c8ff8..cb14754 100644 --- a/skate/url.go +++ b/skate/url.go @@ -38,7 +38,7 @@ func SanitizeURL(s string) string { } else if len(indices) > 1 { sort.Ints(indices) // http://ailab.ist.psu.edu/bcpred/SVMTriP:http://sysbio.unl.edu/SVMTriP/prediction.phpBcell - s = s[indices[0]:indices[1]] // only use the first + s = s[indices[0]:indices[1]] s = strings.TrimRight(s, ":") s = strings.TrimRight(s, ";") } |