|
From: Kevin A. <al...@se...> - 2002-01-01 00:26:35
|
This has been around forever but I never tried running the app on a box that
didn't have Outlook installed, so of course I missed this stupid typo.
Surely somebody must have run addresses.py on Linux before and noticed it
didn't work. Oh well, it is fixed in cvs.
if disableOutlook:
self.menuBar.enable('menuFileImportOutlook', 0)
should be
if disableOutlook:
self.menuBar.setEnabled('menuFileImportOutlook', 0)
ka
|