Files
hunfabric/tools/find_blame.py
kovagoadi 8995067fd4
Some checks failed
Tests / setup-tf-providers (terraform) (push) Failing after 7m42s
Tests / setup-tf-providers (tofu) (push) Failing after 3m36s
Tests / examples-project-templates (push) Has been skipped
Tests / examples-modules (terraform) (push) Has been skipped
Tests / examples-modules (tofu) (push) Has been skipped
Tests / modules (terraform) (push) Has been skipped
Tests / modules (tofu) (push) Has been skipped
Tests / fast (terraform) (push) Has been skipped
Tests / schemas (push) Has been skipped
Linting / linting (push) Failing after 4m41s
Create daily release tags / Create tag on master if there was activity in last 24 hours (push) Successful in 14s
Hungarified fabric
2026-06-17 23:25:23 +02:00

28 lines
506 B
Python
Executable File

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Ez a szar megmondja kinek a hibája.
import random
import sys
blame_list = [
"Az EU",
"Brüsszel",
"Soros",
"A manager",
"Google (faszomat a sok deprecationbe)",
"Béla (megint részeg volt)",
"A gyakornok",
"Trianon",
"A kókányolt Terraform verzió"
]
print("Keresem a hibást...")
for i in range(3):
print("...")
import time
time.sleep(0.5)
print(f"Hiba oka: {random.choice(blame_list)}")
sys.exit(0)