Ticket #15006: tab.patch

File tab.patch, 718 bytes (added by Klaas van Schelven, 13 years ago)
  • django/db/backends/mysql/client.py

    # HG changeset patch
    # User Klaas van Schelven <klaas@vanschelven.com>
    # Date 1294059201 -3600
    # Node ID ad4f3e34372bdc09ab796fae1399237a33896f89
    # Parent  5be8dc62c608df2ee823e782faaef9ccc5a940b9
    Tab converted to spaces
    
    diff -r 5be8dc62c608 -r ad4f3e34372b django/db/backends/mysql/client.py
    a b  
    2727            if '/' in host:
    2828                args += ["--socket=%s" % host]
    2929            else:
    30                 args += ["--host=%s" % host]
     30                args += ["--host=%s" % host]
    3131        if port:
    3232            args += ["--port=%s" % port]
    3333        if db:
Back to Top