diff options
author | Josh Blum | 2013-07-30 20:59:41 -0700 |
---|---|---|
committer | Josh Blum | 2013-07-30 20:59:41 -0700 |
commit | 17d636eec0ee0da346173066dd4f400a64e96c44 (patch) | |
tree | 719ec814b166e4d9c8fcb4f36413d95ba7070296 /tests | |
parent | 3782b3a9a844d32a277adbbfad98bf64b4cb227c (diff) | |
download | sandhi-17d636eec0ee0da346173066dd4f400a64e96c44.tar.gz sandhi-17d636eec0ee0da346173066dd4f400a64e96c44.tar.bz2 sandhi-17d636eec0ee0da346173066dd4f400a64e96c44.zip |
gras: rename some factory functions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/example_module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/example_module.py b/tests/example_module.py index fbf0b45..3ef73dd 100644 --- a/tests/example_module.py +++ b/tests/example_module.py @@ -13,4 +13,4 @@ class MyBlock(gras.Block): def get_num(self): return 42 -gras.register_make("/tests/my_block1", MyBlock) +gras.register_factory("/tests/my_block1", MyBlock) |