소스 검색

Fixed python3 errors

Arovit Narula 11 년 전
부모
커밋
8b10122c11
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      3-tier.py

+ 1 - 1
3-tier.py

@@ -12,7 +12,7 @@ class Data(object):
     }
 
     def __get__(self, obj, klas):
-        print "(Fetching from Data Store)"
+        print ("(Fetching from Data Store)")
         return {'products': self.products}