summaryrefslogtreecommitdiff
path: root/cron/sync_links.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2011-03-27 20:07:29 -0500
committerluxagraf <sng@luxagraf.net>2011-03-27 20:07:29 -0500
commitd0e4499b968834592bd211c0bfecd00aaa042e9a (patch)
tree0280fb65fc98e94c282e928b0a0f95e4c2009795 /cron/sync_links.py
parentcbad6ab096e23aea74c913fd37921652eca9728a (diff)
removed remain references to django tagging and replaced with taggit (faster, fewer db queries)
Diffstat (limited to 'cron/sync_links.py')
-rw-r--r--cron/sync_links.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/cron/sync_links.py b/cron/sync_links.py
index d622bbb..51422ce 100644
--- a/cron/sync_links.py
+++ b/cron/sync_links.py
@@ -3,13 +3,11 @@ from os.path import dirname, abspath
PROJECT_ROOT = abspath(dirname(dirname(__file__)))
-
sys.path.append(PROJECT_ROOT)
sys.path.append(PROJECT_ROOT+'/apps')
sys.path.append(PROJECT_ROOT+'/lib')
sys.path.append(PROJECT_ROOT+'/lib/utils')
-sys.path.append('/home/luxagraf/webapps/django/lib/python2.6/')
+sys.path.append('/home/luxagraf/webapps/django1_3/lib/python2.7/')
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
-
from links import retriever
-retriever.sync_delicious_links() \ No newline at end of file
+retriever.sync_pinboard_links() \ No newline at end of file