You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so it's print(x) causing the issue (more specifically, format.ITime, like you suggested).
We've got
#stylized from format.ITime
x = structure(integer(0), class = "ITime")
hh = x %/% 3600L
ss = paste("0", hh, sep = "")
nn = nchar(paste(hh))
#Error caused by:
substring(ss, nn)
We can just replace the substring bit with a sprintf call, I think... PRing now
The issue is very likely in
format.ITime
. I think the behaviour should be similar toas.Date()
,as.IDate()
andas.POSIXct()
.The text was updated successfully, but these errors were encountered: