Commit a4590776 authored by Davis King's avatar Davis King

Minor printing improvement

parent 67ae00b4
...@@ -66,7 +66,7 @@ string array__repr__ (const std::vector<double>& v) ...@@ -66,7 +66,7 @@ string array__repr__ (const std::vector<double>& v)
string range__str__ (const std::pair<unsigned long,unsigned long>& p) string range__str__ (const std::pair<unsigned long,unsigned long>& p)
{ {
std::ostringstream sout; std::ostringstream sout;
sout << p.first << ": " << p.second; sout << p.first << ", " << p.second;
return sout.str(); return sout.str();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment