Skip to content

Commit

Permalink
Fix catmaid_skids error message when looking for one skid
Browse files Browse the repository at this point in the history
* fixes #90
  • Loading branch information
jefferis committed Feb 25, 2018
1 parent 032f418 commit dea30e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/catmaid_skids.R
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ catmaid_skids<-function(x, several.ok=TRUE, conn=NULL, ...) {
}
}
if(!several.ok && length(skids)>1)
stop("Only expecting one skid but I have: ", length(x), "!")
stop("Only expecting one skid but I have ", length(skids), "!")
skids
}

0 comments on commit dea30e4

Please sign in to comment.