[Mumps2Py:] [174] clean-up aborted fix, caught by pylint. |
[ Thread Index |
Date Index
| More lists.mumps2py.org/discuss Archives
]
Revision: 174
Author: pgallot
Date: 2008-03-12 21:35:54 +0000 (Wed, 12 Mar 2008)
Log Message:
-----------
clean-up aborted fix, caught by pylint.
Modified Paths:
--------------
trunk/mumps2py/mumps2tok.py
Modified: trunk/mumps2py/mumps2tok.py
===================================================================
--- trunk/mumps2py/mumps2tok.py 2008-03-12 21:31:05 UTC (rev 173)
+++ trunk/mumps2py/mumps2tok.py 2008-03-12 21:35:54 UTC (rev 174)
@@ -827,7 +827,7 @@
entry_ref_list = []
mterminated = MUMPS_RE_DICT["cmdEnd"]
while not mterminated.match(line, pos):
- (entry_ref, new_pos) = parse_entry_ref(line, pos)
+ (entry_ref, pos) = parse_entry_ref(line, pos)
if not mterminated.match(line, pos) and line[pos] == '(':
pos += 1
params = []