[Wisp-cvs] wisp/users/dig linkie.py,1.44,1.45
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-04-27 12:48:34
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv12814 Modified Files: linkie.py Log Message: minor fix of Linkie.emit_single_item Index: linkie.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/linkie.py,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- linkie.py 27 Apr 2003 12:06:25 -0000 1.44 +++ linkie.py 27 Apr 2003 12:48:30 -0000 1.45 @@ -57,7 +57,8 @@ this.emit_tetra(this._emit_sum(4, addends, delta, relative)) def emit_single_item (this, step, value): if isinstance(value, str): - this._emit_sum(step, [value], delta = 0, relative = 0) + this.emit_tetra(this._emit_sum(step, [value], + delta = 0, relative = 0)) else: Bits.emit_single_item(this, step, value) def skip (this, amount): |