Closed
Bug 486866
Opened 17 years ago
Closed 17 years ago
[silme] self._getPos should be self._get_pos in L10nObject.add_elements()
Categories
(Mozilla Localizations :: Infrastructure, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: stas, Assigned: zbraniecki)
Details
What summary says.
Plus, just for the sake of readability I'd also suggest using
if pos:
instead of:
if not pos == None:
line above. They're equal, right?
| Assignee | ||
Comment 1•17 years ago
|
||
(In reply to comment #0)
> What summary says.
Fixed, http://hg.mozilla.org/users/zbraniecki_mozilla.com/silme/rev/23d0b935550e
> Plus, just for the sake of readability I'd also suggest using
> if pos:
> instead of:
> if not pos == None:
> line above. They're equal, right?
Nah,
if pos:
...
catches pos=0 case.
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
| Assignee | ||
Updated•17 years ago
|
Assignee: nobody → gandalf
| Reporter | ||
Comment 2•17 years ago
|
||
Oh, right. Didn't think of that.
Thanks for landing the patch.
You need to log in
before you can comment on or make changes to this bug.
Description
•