Skip to content

Commit e6403da

Browse files
committedMay 27, 2015
Remove adding $ to front of custom functions
Fixes calling no argument functions
1 parent 06ab478 commit e6403da

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎python/core/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ def func(self, values, feature, parent):
5252
helptext = function.__doc__ or ''
5353
helptext = helptext.strip()
5454
expandargs = False
55-
if arg_count == 0 and not name[0] == '$':
56-
name = '${0}'.format(name)
5755

5856
if arg_count == "auto":
5957
# Work out the number of args we need.

0 commit comments

Comments
 (0)
Please sign in to comment.