فهرست منبع

HUE-141. Fixing a syntax error in tests for the Shell app that causes failures in Python 2.4.

Aditya Acharya 14 سال پیش
والد
کامیت
fba7948acb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      apps/shell/src/shell/tests.py

+ 1 - 1
apps/shell/src/shell/tests.py

@@ -64,7 +64,7 @@ class TestServer(threading.Thread):
       return ['Dummy response\r\n']
     eventlet.wsgi.server(eventlet.listen(('',55555)), dummy_server)
 
-class TestRequest():
+class TestRequest(object):
   def __init__(self):
     self.POST = {}
     self.DICT = {}