Bug 523208. Fix string to refer to --setpref instead of --extra-pref.

This commit is contained in:
Jonathan Griffin 2009-10-26 09:57:33 -07:00
Родитель 1c2dd0129b
Коммит ace18cd7d8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -335,7 +335,7 @@ user_pref("camino.use_system_proxy_settings", false); // Camino-only, harmless t
for v in extraPrefs:
thispref = v.split("=")
if len(thispref) < 2:
print "Error: syntax error in --extra-pref=" + v
print "Error: syntax error in --setpref=" + v
sys.exit(1)
part = 'user_pref("%s", %s);\n' % (thispref[0], thispref[1])
prefs.append(part)