Browse Source

Fixed python3 errors

Arovit Narula 11 years ago
parent
commit
8b10122c11
1 changed files with 1 additions and 1 deletions
  1. 1 1
      3-tier.py

+ 1 - 1
3-tier.py

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