Commit 98559195 authored by Jim Fulton's avatar Jim Fulton

*** empty log message ***

parent 6c8c345f
__doc__="""Application management component""" __doc__="""Application management component"""
__version__='$Revision: 1.11 $'[11:-2] __version__='$Revision: 1.12 $'[11:-2]
import sys,os,time,Globals import sys,os,time,Globals
...@@ -76,6 +76,6 @@ class ApplicationManager(Acquirer,Management,CacheManager): ...@@ -76,6 +76,6 @@ class ApplicationManager(Acquirer,Management,CacheManager):
def manage_addProduct(self, product): def manage_addProduct(self, product):
"""Register a product """Register a product
""" """
products=self._p_jar.db['products'] products=Globals.Bobobase['products']
if product not in products: if product not in products:
self._p_jar.db['products']=tuple(products)+(product,) Globals.Bobobase['products']=tuple(products)+(product,)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment