changeset 133:8993609e7004

Removed a hack that's no longer needed.
author Atul Varma <varmaa@toolness.com>
date Thu, 03 Apr 2008 12:31:49 -0700
parents 09c808e39a98
children aaa032194990
files personasbackend/utils.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/personasbackend/utils.py	Thu Apr 03 12:30:39 2008 -0700
+++ b/personasbackend/utils.py	Thu Apr 03 12:31:49 2008 -0700
@@ -2,7 +2,5 @@
 
 def make_absolute_url( path ):
     domain = Site.objects.get_current().domain
-    if domain == "localhost":
-        domain = "localhost:8000"
     url = "http://%s%s" % (domain, path)
     return url