Bug 622398 - automation.py.in: add missing early return_s to installExtension(); (Av1) Just add them.

r=ctalbert a=(test only).
This commit is contained in:
Serge Gautherie 2011-01-04 12:06:53 +01:00
Родитель 43426109b4
Коммит 52cb5065f4
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -926,9 +926,11 @@ user_pref("camino.use_system_proxy_settings", false); // Camino-only, harmless t
def installExtension(self, extensionSource, profileDir, extensionID):
if (not os.path.exists(extensionSource)):
self.log.info("INFO | automation.py | Cannot install extension no source at: %s", extensionSource)
return
if (not os.path.exists(profileDir)):
self.log.info("INFO | automation.py | Cannot install extension invalid profileDir at: %s", profileDir)
return
# See if we have an XPI or a directory
if (os.path.isfile(extensionSource)):