I have a VPS running a fresh install of Ubuntu 10.04 LTS. I\'m trying to set up a live application using the Flask microframework, but it\'s giving me trouble. I took notes whil
Edit line sys.path.append, it needs to be a string.
sys.path.append
import sys sys.path.append('directory/where/package/is/located')
Notice the single quotes.