Changeset 888:db695c0faa77 in hatta-dev
- Timestamp:
- 02/16/12 00:26:02 (3 months ago)
- Branch:
- default
- Tags:
- tip
- File:
-
- 1 edited
-
hatta/parser.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hatta/parser.py
r887 r888 101 101 if bind_to is not None: 102 102 function = getattr(bind_to, function.__name__) 103 params = dict(( k, v) for (k, v) in params.iteritems()103 params = dict((str(k), v) for (k, v) in params.iteritems() 104 104 if v is not None and k not in self.rules) 105 105 yield function(**params)
Note: See TracChangeset
for help on using the changeset viewer.
