From 106d34c7f055e34adcb07652769e304964c0164f Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 14 Jun 2013 14:22:21 +0200 Subject: [PATCH] manage: remove dead sys.path manipulations --- authentic2-ctl | 3 --- 1 file changed, 3 deletions(-) diff --git a/authentic2-ctl b/authentic2-ctl index 71e8a74b9..f15e242c2 100755 --- a/authentic2-ctl +++ b/authentic2-ctl @@ -1,9 +1,6 @@ #!/usr/bin/env python import os, sys -sys.path.append(os.path.dirname(__file__)) -sys.path.append(os.path.join(os.path.dirname(__file__), 'authentic2', 'vendor')) - if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "authentic2.settings") os.environ.setdefault('DEBUG', '1')