X-Git-Url: https://scm.cri.ensmp.fr/git/photoprint.git/blobdiff_plain/d58f05ac0929ed7c2c7ecf248049fb2fa0222dd7..8db44a89ad1641ae718b6763c0af0a7f08476e03:/order.py diff --git a/order.py b/order.py index ea48483..66d17fa 100755 --- a/order.py +++ b/order.py @@ -45,7 +45,11 @@ from price import Price from xml.dom.minidom import Document from tool import COPIES_COUNTERS from App.config import getConfiguration -from paypal.interface import PayPalInterface +try : + from paypal.interface import PayPalInterface + paypalAvailable = True +except ImportError : + paypalAvailable = False from logging import getLogger console = getLogger('Products.photoprint.order')