Skip to content

Commit

Permalink
Merge pull request #153 from odo/master
Browse files Browse the repository at this point in the history
fixing problem with operation names containing underscores
  • Loading branch information
slfritchie committed Nov 21, 2014
2 parents 1780fc8 + a09c831 commit 15f8806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion priv/common.r
Expand Up @@ -13,7 +13,7 @@ for(p in packages.to.install)
# Load a latency file and ensure that it is appropriately tagged
load_latency_frame <- function(File)
{
op <- strsplit(basename(File), "_")[[1]][1]
op <- gsub("_latencies.csv", "", basename(File))
frame <- read.csv(File)
frame$op = rep(op, nrow(frame))
return (frame)
Expand Down

0 comments on commit 15f8806

Please sign in to comment.