LPTHW Exercise 52: Learning web apps with the web.py framework

Problem:
Could not get nosetests to run, kept getting NameError: global name
'START' not defined.
Resolution:
Turns out in my map_tests.py file I had put "from bin.map import Room" instead of "from bin.map import *". Simple fix.

Problem:
Tried to run my session tracking app locally, but kept getting 'socket.error: No socket could be created'
Resolution:
Needed to close the other web app open in another iTerm tab which was hogging port 80.