Closed
Bug 387437
Opened 18 years ago
Closed 18 years ago
specify wanted app to l10n.py
Categories
(Core :: Internationalization: Localization, defect)
Core
Internationalization: Localization
Tracking
()
RESOLVED
FIXED
People
(Reporter: kairo, Assigned: Pike)
Details
Attachments
(1 file, 1 obsolete file)
|
1.62 KB,
patch
|
kairo
:
review+
|
Details | Diff | Splinter Review |
<KaiRo> Pike: hmm, l10n.py only does a Firefox L10n, but I'd need a SeaMonkey one
<Pike> KaiRo: that's a one-line change (and a missed commandline option, file a bug?)
| Assignee | ||
Comment 1•18 years ago
|
||
just add a commandline option for --app
Now you can do
python l10n.py --app=browser --app=mail foo-BAR
Attachment #271659 -
Flags: review?(kairo)
| Reporter | ||
Comment 2•18 years ago
|
||
Comment on attachment 271659 [details] [diff] [review]
add --app commandline support
Most of this looks fine to me (though I don't really understand python) and it works for even cases with multiple app, but it fails for the default case of not defining --app at all:
------------------
robert@robert:/mnt/mozilla/src/mozilla> python tools/l10n/l10n.py bla
Traceback (most recent call last):
File "tools/l10n/l10n.py", line 153, in <module>
opts.app, exceptions=exceptions)
File "tools/l10n/l10n.py", line 79, in createLocalization
if not len(apps):
TypeError: object of type 'NoneType' has no len()
------------------
I guess you need a different way of checking for this being not specified...
Attachment #271659 -
Flags: review?(kairo) → review-
| Assignee | ||
Comment 3•18 years ago
|
||
Duh. Fixed.
Attachment #271659 -
Attachment is obsolete: true
Attachment #271665 -
Flags: review?(kairo)
| Reporter | ||
Comment 4•18 years ago
|
||
Comment on attachment 271665 [details] [diff] [review]
catch default for real
Yes, this seems to work fine now. r=me
Attachment #271665 -
Flags: review?(kairo) → review+
| Assignee | ||
Comment 5•18 years ago
|
||
Thanks for catching the bug, and the review. FIXED.
Checking in l10n.py;
/cvsroot/mozilla/tools/l10n/l10n.py,v <-- l10n.py
new revision: 1.2; previous revision: 1.1
done
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•