728x90
1 2 | except Exception, e : return "Error:%s" % str(e) | cs |
위의 에러는 파이썬3에서는 더 이상 컴마로 구분하는 것을 허용하지 않기 때문이다.
, 대신 아래와 같이 as 를 사용하면 된다.
as 는 파이썬 2.7 과도 호환된다.
1 2 | except Exception as e : return "Error:%s" % str(e) | cs |
728x90
'프로그래밍 Programming' 카테고리의 다른 글
Related Field got invalid lookup: icontains (0) | 2016.03.13 |
---|---|
Admin 페이지에서 특정 필드 readonly 로 변경하기 (0) | 2016.03.13 |
Django Suit configuration 장고 어드민사이트 커스토마이징 (0) | 2016.02.27 |
No Java virtual machine was found after searching the following locations. (0) | 2016.02.23 |
컴파일된 자바 클래스 파일 컴파일 버전 확인방법 (0) | 2016.02.19 |