summaryrefslogtreecommitdiff
path: root/gr-utils/modtool/cli/add.py
diff options
context:
space:
mode:
authoralekhgupta1441 <alekhgupta1441@gmail.com>2020-04-11 07:41:53 +0530
committerMichael Dickens <michael.dickens@ettus.com>2020-04-19 15:33:41 -0400
commit6cc845400200fdc20f9a8101c37d9a4bd0afa356 (patch)
treee541ac3b543d468b3e00a338f1233969a62bdc5a /gr-utils/modtool/cli/add.py
parenta69c2528eb618739308a147c5b4a450be922bb5f (diff)
modtool: Corrected Single and Double Quotes
Diffstat (limited to 'gr-utils/modtool/cli/add.py')
-rw-r--r--gr-utils/modtool/cli/add.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/modtool/cli/add.py b/gr-utils/modtool/cli/add.py
index 8559a9b9c4..a3bc0c3fb6 100644
--- a/gr-utils/modtool/cli/add.py
+++ b/gr-utils/modtool/cli/add.py
@@ -115,7 +115,7 @@ def get_copyrightholder(self):
with SequenceCompleter(copyright_candidates):
self.info['copyrightholder'] = cli_input("Please specify the copyright holder: ")
if not self.info['copyrightholder'] or self.info['copyrightholder'].isspace():
- self.info['copyrightholder'] = f"gr-{self.info["modname"]} author"
+ self.info['copyrightholder'] = f'gr-{self.info["modname"]} author'
elif self.info['is_component']:
click.secho("For GNU Radio components the FSF is added as copyright holder",
fg='cyan')