diff options
author | alekhgupta1441 <alekhgupta1441@gmail.com> | 2020-04-11 07:41:53 +0530 |
---|---|---|
committer | Michael Dickens <michael.dickens@ettus.com> | 2020-04-19 15:33:41 -0400 |
commit | 6cc845400200fdc20f9a8101c37d9a4bd0afa356 (patch) | |
tree | e541ac3b543d468b3e00a338f1233969a62bdc5a /gr-utils/modtool/cli/add.py | |
parent | a69c2528eb618739308a147c5b4a450be922bb5f (diff) |
modtool: Corrected Single and Double Quotes
Diffstat (limited to 'gr-utils/modtool/cli/add.py')
-rw-r--r-- | gr-utils/modtool/cli/add.py | 2 |
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') |