Browse Source

Fix ISP database version (should be a float, not a string)

Baptiste Jonglez 10 years ago
parent
commit
8b38dd89d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/isp_database/models.py

+ 1 - 1
coin/isp_database/models.py

@@ -9,7 +9,7 @@ from coin.members.models import count_active_members
 from coin.offers.models import count_active_subscriptions
 
 # API version, see http://db.ffdn.org/format
-API_VERSION = "0.1"
+API_VERSION = 0.1
 
 TECHNOLOGIES = (('ftth', 'FTTH'),
                 ('dsl', '*DSL'),