Commit 32933d27 authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

Fixed a corner case in management.setup_environ (it was triggered under...

Fixed a corner case in management.setup_environ (it was triggered under Cygwin, but also perhaps could happen elsewhere). Thanks, Doug Napoleone.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7316 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 7d74376a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -257,6 +257,7 @@ answer newbie questions, and generally made Django that much better:
    Robin Munn <http://www.geekforgod.com/>
    Robert Myers <myer0052@gmail.com>
    Nebojša Dorđević
    Doug Napoleone <doug@dougma.com>
    Gopal Narayanan <gopastro@gmail.com>
    Fraser Nevett <mail@nevett.org>
    Sam Newman <http://www.magpiebrain.com/>
+1 −1
Original line number Diff line number Diff line
@@ -243,7 +243,7 @@ def setup_environ(settings_mod):
    # way. For example, if this file (manage.py) lives in a directory
    # "myproject", this code would add "/path/to/myproject" to sys.path.
    project_directory, settings_filename = os.path.split(settings_mod.__file__)
    if not project_directory:
    if project_directory == os.curdir or not project_directory:
        project_directory = os.getcwd()
    project_name = os.path.basename(project_directory)
    settings_name = os.path.splitext(settings_filename)[0]