Skip to content

Commit

Permalink
Fixing bug on complex expressions with braces
Browse files Browse the repository at this point in the history
  • Loading branch information
marinho committed Jun 8, 2010
1 parent 46aeba9 commit b1c64bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geraldo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
- tests - a package with automated doc tests.
"""

VERSION = (0, 4, 3, 'stable')
VERSION = (0, 4, 4, 'stable')

def get_version():
return '%d.%d.%d-%s'%VERSION
Expand Down
2 changes: 1 addition & 1 deletion geraldo/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def clone(self):

return new

EXP_QUOTED = re.compile('\(([^\'"].+?[^\'"])(|,.*?)\)')
EXP_QUOTED = re.compile('\w\(([^\'"].+?[^\'"])(|,.*?)\)')
EXP_TOKENS = re.compile('([\w\._]+|\*\*|\+|\-|\*|\/)')

class ObjectValue(Label):
Expand Down

0 comments on commit b1c64bc

Please sign in to comment.