We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df6df3 commit eabb50cCopy full SHA for eabb50c
ros2pkg/ros2pkg/verb/create.py
@@ -113,13 +113,13 @@ def get_git_config(key: str) -> str | None:
113
sys.exit(0)
114
115
maintainer_name: str = (
116
- args.maintainer_name
117
- or get_git_config('user.name')
+ args.maintainer_name
+ or get_git_config('user.name')
118
or getpass.getuser())
119
maintainer = Person(maintainer_name)
120
maintainer.email = (
121
- args.maintainer_email
122
- or get_git_config('user.email')
+ args.maintainer_email
+ or get_git_config('user.email')
123
or f"{maintainer.name.replace(' ', '')}@todo.todo")
124
125
node_name = None
0 commit comments