1
0
Fork 0
forked from 0x2620/oxjs

new build system: build in /build, dev version in /dev; split up Ox.js; fix tests

This commit is contained in:
rolux 2011-10-07 03:04:47 +02:00
commit d0fe279a0f
366 changed files with 8165 additions and 161926 deletions

View file

@ -1,6 +1,11 @@
import json
import os
import ox
base_path = os.path.dirname(__file__)
if base_path:
os.chdir(base_path)
f = open('../json/countries.json')
data = json.loads(f.read())
f.close()