dbrgn / orochi

Orochi is an interactive command line client for 8tracks.com.
GNU General Public License v3.0
86 stars 17 forks source link

Fixed type error in `display_search_results` method. #39

Closed octogene closed 10 years ago

dbrgn commented 10 years ago

Hm, why should that happen? The configuration is stored as JSON, which has an "int" type too. So the results_per_page setting should never be returned as a string.

octogene commented 10 years ago

I've found the problem, when setting results_per_page we're passing param, which is a string, to self.config['results_per_page']. I'll fix that and squash the commits.

dbrgn commented 10 years ago

Ahh. I already looked for bad lines of code before, but overlooked that line of code :) Thanks for spotting it!