Skip to content

Commit

Permalink
fix a bug in reading spec files
Browse files Browse the repository at this point in the history
  • Loading branch information
ddale committed May 5, 2011
1 parent 094bf47 commit 14ae09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion praxes/io/spec/proxies.pyx
Expand Up @@ -116,7 +116,7 @@ cdef class DataProxy:
j = 0
val_n = 0
for c in cstring:
if isdigit(c) or c in (b'-', b'.', b'e', b'E'):
if isdigit(c) or c in (b'-', b'+', b'.', b'e', b'E'):
val[j] = c
j += 1
elif j:
Expand Down

0 comments on commit 14ae09a

Please sign in to comment.