Commit eeb230aa authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #9117: Made the test client a new-style class. Thanks to Jan Oberst for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent a27ff1c8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ def encode_file(boundary, key, file):
        file.read()
    ]

class Client:
class Client(object):
    """
    A class that can act as a client for testing purposes.