gcollazo / BrowserRefresh-Sublime

This plugin will switch from ST2 and ST3 to Google Chrome, Google Chrome Canary, Safari, Firefox or Opera and reload the active tab
http://gcollazo.github.com/BrowserRefresh-Sublime
565 stars 61 forks source link

Proposed fix for issue #57 #58

Closed enriquein closed 10 years ago

enriquein commented 10 years ago

The problem turned out to be how the division operator ("/") is handled now in Python 3. "/" returns float while "//" returns an integer. The problem was that some operations were dividing and then using the float result to index arrays.