diff options
author | Swapnil Negi <swapnil.negi09@gmail.com> | 2018-04-05 04:59:16 +0530 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-04-06 15:13:27 -0700 |
commit | 48542c39a24a32c628dc4b59efa5545b2112ea57 (patch) | |
tree | b428714d7377c4f05c2aa68b1fc8d9c91cc90eac /gr-utils/python/modtool/modtool_newmod.py | |
parent | 6e91f2ecf17db6f7ac810faf18e7ea719247d8d4 (diff) |
modtool: Pylint error fixes
Diffstat (limited to 'gr-utils/python/modtool/modtool_newmod.py')
-rw-r--r-- | gr-utils/python/modtool/modtool_newmod.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gr-utils/python/modtool/modtool_newmod.py b/gr-utils/python/modtool/modtool_newmod.py index 3e05ecbf48..43ea44618e 100644 --- a/gr-utils/python/modtool/modtool_newmod.py +++ b/gr-utils/python/modtool/modtool_newmod.py @@ -26,7 +26,6 @@ import re from optparse import OptionGroup from gnuradio import gr from modtool_base import ModTool, ModToolException -from scm import SCMRepoFactory class ModToolNewModule(ModTool): """ Create a new out-of-tree module """ @@ -41,7 +40,7 @@ class ModToolNewModule(ModTool): parser.usage = '%prog nm [options]. \n Call %prog without any options to run it interactively.' ogroup = OptionGroup(parser, "New out-of-tree module options") ogroup.add_option("--srcdir", type="string", - help="Source directory for the module template.") + help="Source directory for the module template.") parser.add_option_group(ogroup) return parser @@ -99,4 +98,3 @@ class ModToolNewModule(ModTool): if self.scm.init_repo(path_to_repo="."): print "Created repository... you might want to commit before continuing." print "Use 'gr_modtool add' to add a new block to this currently empty module." - |