소스 검색

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 = {}