diff --git a/ubuntu_namer/__main__.py b/ubuntu_namer/__main__.py index 0c8a291..033e1f3 100755 --- a/ubuntu_namer/__main__.py +++ b/ubuntu_namer/__main__.py @@ -72,7 +72,7 @@ def generate_name( adjective = random.choice(ubuntu_names[letter]["adjectives"]) animals = random.choice(ubuntu_names[letter]["animals"]) - ubuntu_name = f"{adjective} {animals}" + ubuntu_name = f"{adjective} {animals}".strip().title() console.print(f"[bold red]{ubuntu_name}[/]")