# HG changeset patch # User ymh # Date 1374512275 -7200 # Node ID 2f2cc65284b07de896594a7c450b19b61a2a331c # Parent 6ef0ca20d634654b44d35f9e9dff3c59533d7d0b small settings correction diff -r 6ef0ca20d634 -r 2f2cc65284b0 sbin/sync/fabfile.py --- a/sbin/sync/fabfile.py Tue May 28 13:08:55 2013 +0200 +++ b/sbin/sync/fabfile.py Mon Jul 22 18:57:55 2013 +0200 @@ -25,7 +25,7 @@ @task def update_lib(version, package): - print(green("update ldt with version %s" % version)) + print(green("update %s with version %s" % (package,version))) export_path = export_version(web=version) export_path_full = os.path.join(export_path,'web') lib_path = os.path.join(export_path_full, "virtualenv", "res", "lib") diff -r 6ef0ca20d634 -r 2f2cc65284b0 src/ldtplatform/settings.py --- a/src/ldtplatform/settings.py Tue May 28 13:08:55 2013 +0200 +++ b/src/ldtplatform/settings.py Mon Jul 22 18:57:55 2013 +0200 @@ -251,9 +251,6 @@ if not "SRC_BASE_URL" in locals(): SRC_BASE_URL = BASE_URL + __name__.split('.')[0] + '/' -if not "SRC_BASE_URL" in locals(): - SRC_BASE_URL = BASE_URL + 'ldtplatform/' - if not "LOGIN_URL" in locals(): LOGIN_URL = SRC_BASE_URL + 'accounts/login/' if not "LOGOUT_URL" in locals():