소스 검색

Fixes syntax error in httpexample's manage.py

Ask Solem 11 년 전
부모
커밋
3a37cc7eb0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/httpexample/manage.py

+ 1 - 1
examples/httpexample/manage.py

@@ -6,7 +6,7 @@ except ImportError:
     import sys
     sys.stderr.write(
         "Error: Can't find the file 'settings.py' in the directory "
-        "containing {0!r}.".format(__file__)
+        "containing {0!r}.".format(__file__))
     sys.exit(1)
 
 if __name__ == '__main__':