nathanmarz / cascalog

Data processing on Hadoop without the hassle.
Other
1.38k stars 178 forks source link

Correct the use of `format` #238

Closed mishok13 closed 10 years ago

mishok13 commented 10 years ago

In the current code format function has format strings passed without conversion specifier, such as "foo: % bar" instead of "foo: %s bar". The issue was shadowing prevents display of actual errors and now it seems to work just fine.

sorenmacbeth commented 10 years ago

good catch!