Changeset 17316
- Timestamp:
- 27 Jan 2023, 06:41:48 (2 years ago)
- Location:
- main/kofacustom.nigeria/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/buildout.cfg
r15800 r17316 7 7 develop = . 8 8 parts = 9 eggbasket10 9 app 11 10 i18n … … 181 180 output = ${buildout:parts-directory}/etc/profile.ini 182 181 183 [eggbasket]184 recipe = z3c.recipe.eggbasket185 eggs = grok186 url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz187 188 182 #[waeupdocs] 189 183 #recipe = collective.recipe.sphinxbuilder -
main/kofacustom.nigeria/trunk/src/kofacustom/__init__.py
r12973 r17316 3 3 import pkg_resources 4 4 pkg_resources.declare_namespace(__name__) 5 except ImportError , e:5 except ImportError: 6 6 from pkgutil import extend_path 7 7 __path__ = extend_path(__path__, __name__) -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/paypal/__init__.py
r17249 r17316 24 24 25 25 def module_activated(session, payment): 26 if payment is not None and not payment.p_currency in ('USD',):27 return False26 #if payment is not None and not payment.p_currency in ('USD',): 27 # return False 28 28 if queryUtility(IPaypalConfig) is None: 29 29 return False
Note: See TracChangeset for help on using the changeset viewer.