Skip to content

Commit

Permalink
Merge pull request BVLC#2400 from cnDelbert/master
Browse files Browse the repository at this point in the history
Correct the REPO_DIRNAME in `examples/web_demo/app.py`
  • Loading branch information
shelhamer committed Jun 1, 2015
2 parents 50ab52c + 63703ed commit fd0ded9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/web_demo/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import caffe

REPO_DIRNAME = os.path.abspath(os.path.dirname(__file__) + '/../..')
REPO_DIRNAME = os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + '/../..')
UPLOAD_FOLDER = '/tmp/caffe_demos_uploads'
ALLOWED_IMAGE_EXTENSIONS = set(['png', 'bmp', 'jpg', 'jpe', 'jpeg', 'gif'])

Expand Down

0 comments on commit fd0ded9

Please sign in to comment.