diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-02-26 09:32:02 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-02-26 09:32:02 -0800 |
commit | c0381e0ec2ddde61ee4cfd23f2e431af4249874e (patch) | |
tree | 3d54e795d795773201d4c31c520e22e9d5e95112 /gr-utils/python/modtool/modtool_rename.py | |
parent | 1683e58d54200dd2889dfdb7141c9555e16b769e (diff) | |
parent | cf5ebff46e5bdc6044d8bfa65a5def82069cf3ce (diff) |
Merge branch 'maint'
Diffstat (limited to 'gr-utils/python/modtool/modtool_rename.py')
-rw-r--r-- | gr-utils/python/modtool/modtool_rename.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/modtool_rename.py b/gr-utils/python/modtool/modtool_rename.py index 8f1b250c00..68ac785e0f 100644 --- a/gr-utils/python/modtool/modtool_rename.py +++ b/gr-utils/python/modtool/modtool_rename.py @@ -168,7 +168,7 @@ class ModToolRename(ModTool): grcfile = './grc/' + module + '_' + old + '.xml' self._run_file_replace(grcfile, old, new) self._run_cmakelists('./grc/', old, new) - self._run_file_rename('./grc/', old, new) + self._run_file_rename('./grc/', module + '_' + old, module + '_' + new) def _run_cmakelists(self, path, first, second): filename = path + 'CMakeLists.txt' |