summaryrefslogtreecommitdiff
path: root/apps/blog
diff options
context:
space:
mode:
authorluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2009-04-13 16:27:38 +0000
committerluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2009-04-13 16:27:38 +0000
commite75094fbf7e008d25bbb8f14cb5e9ad6f3ee2403 (patch)
treea56a83c3068b83f01e0f1e632cc1d239b1f95053 /apps/blog
parentc9a06c5b9604e01df58b8e271917e348d1c29e83 (diff)
updated tumblr code and link gathering code
Diffstat (limited to 'apps/blog')
-rw-r--r--apps/blog/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/blog/models.py b/apps/blog/models.py
index e598f14..f354bab 100644
--- a/apps/blog/models.py
+++ b/apps/blog/models.py
@@ -15,7 +15,7 @@ from locations.models import Location,Region
#from locations.signals import create_location_item
def get_upload_path(self, filename):
- return "%s/post-thumbs/%s/%s" %(settings.IMAGES_ROOT, datetime.datetime.today().strftime("%Y"), filename)
+ return "images/post-thumbs/heloo/%s/%s" %(datetime.datetime.today().strftime("%Y"), filename)
def markdown_processor(md):
processed = markdown.markdown(md, safe_mode = False).split('<break>')