Skip to content

Commit

Permalink
error in the put for maps
Browse files Browse the repository at this point in the history
  • Loading branch information
fscottfoti committed Mar 27, 2014
1 parent 454e67a commit 3dad5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urbansim/server/urbansimd.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def write_config(mapname):
def resp():
s = simplejson.dumps(json, indent=4)
print s
return open(os.path.join(misc.map_dir(), mapname), "w").write(s)
return open(os.path.join(misc.maps_dir(), mapname), "w").write(s)
return wrap_request(request, response, resp())


Expand Down

0 comments on commit 3dad5c5

Please sign in to comment.