Fix viewing domain aliases.

This commit is contained in:
ahixon
2009-04-16 02:43:15 +00:00
parent 6e6727b194
commit 77f271876d
+2 -3
View File
@@ -59,11 +59,10 @@ class AliasHandler(HawkeyeHandler):
self.SetVariable("dremove", None)
# Template stuff
#domainName = info.filename.replace(storePath + "/", "")
domainName = info.filename
domainName = info.filename.replace(storePath + "/", "")
# Fetch data and set template variables
dataobj = store.Read(storePath + "/" + info.filename)
dataobj = store.Read(info.filename)
decoder = simplejson.JSONDecoder()
data = { }
try: