fix exception if no country is specified

This commit is contained in:
Damien Churchill 2009-02-21 10:44:20 +00:00
parent dadb74477e
commit 604ddc092e
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ class Flag(resource.Resource):
path = ("data", "pixmaps", "flags", request.country.lower() + ".png")
filename = pkg_resources.resource_filename("deluge",
os.path.join(*path))
if filename:
if os.path.exists(filename):
request.setHeader("cache-control", "public, must-revalidate, max-age=86400")
request.setHeader("content-type", "image/png")
data = open(filename, "rb")