We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4cd7c2 commit b08b10eCopy full SHA for b08b10e
generator.py
@@ -39,20 +39,25 @@
39
40
else:
41
print("No config files found!\nRunning default script...")
42
- opt = int(raw_input("""
+ opt = int(input("""
43
what type of commit convention are you using?
44
45
default: Just the message
46
1: Karma/Angular
47
2: Conventional changelog
48
3: Symfony CMF
49
+
50
""") or 4)
51
52
if opt == 1:
53
+ print("You're using the angular convention")
54
angular_convention()
55
elif opt == 2:
- changelog_convention()
56
+ print("You're using the changelog convention")
57
+ changelog_convention()
58
elif opt == 3:
59
+ print("You're using the symphony convention")
60
symphony_convention()
61
elif opt == 4:
62
+ print("You're not using a convention")
63
just_message()
0 commit comments