소스 검색

Changed module to relative import from file to allow execution on systems without testrunner in dist-packages

Taddeus Kroes 13 년 전
부모
커밋
b3263a3657
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      __main__.py

+ 1 - 1
__main__.py

@@ -6,7 +6,7 @@
 #
 
 import sys
-from testrunner import main
+from runner import main
 
 if len(sys.argv) < 2:
     print 'Usage: %s tests/test_COMPONENT.py' % sys.argv[0]