Commit 626dd7d807606bdd3a3ec80ddf9772dfc0e246b6

Authored by Josh Klontz
1 parent 4a6579ea

removed extra space

Showing 1 changed file with 2 additions and 2 deletions
openbr/plugins/core/pipe.cpp
... ... @@ -56,13 +56,13 @@ class PipeTransform : public CompositeTransform
56 56 while (i < transforms.size()) {
57 57 // Conditional statement covers likely case that first transform is untrainable
58 58 if (transforms[i]->trainable) {
59   - qDebug() << "Training " << transforms[i]->description() << "\n...";
  59 + qDebug() << "Training" << transforms[i]->description() << "\n...";
60 60 transforms[i]->train(dataLines);
61 61 }
62 62  
63 63 // if the transform is time varying, we can't project it in parallel
64 64 if (transforms[i]->timeVarying()) {
65   - qDebug() << "Projecting " << transforms[i]->description() << "\n...";
  65 + qDebug() << "Projecting" << transforms[i]->description() << "\n...";
66 66 for (int j=0; j < dataLines.size();j++) {
67 67 TemplateList junk;
68 68 splitFTEs(dataLines[j], junk);
... ...