We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9373531 commit f767da4Copy full SHA for f767da4
turtlebot4_setup/conf.py
@@ -214,7 +214,12 @@ def write_system(self):
214
system = f.readlines()
215
for i, line in enumerate(system):
216
is_conf = False
217
- for k in [SystemOptions.MODEL, SystemOptions.VERSION, SystemOptions.ROS]:
+ for k in [
218
+ SystemOptions.MODEL,
219
+ SystemOptions.VERSION,
220
+ SystemOptions.ROS,
221
+ SystemOptions.HOSTNAME,
222
+ ]:
223
if k in line:
224
system[i] = f'{k}:{self.system_conf[k]}\n'
225
is_conf = True
0 commit comments