We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550b547 commit 26247d6Copy full SHA for 26247d6
setup.py
@@ -75,10 +75,7 @@ def initialize_options(self):
75
self.output_dir = translations_dir
76
self.input_file = os.path.join(translations_dir, 'bpython.pot')
77
78
- build.sub_commands.append(('compile_catalog', None))
79
- build.sub_commands.append(('update_catalog', None))
80
- build.sub_commands.append(('extract_messages', None))
81
- build.sub_commands.append(('init_catalog', None))
+ build.sub_commands.insert(0, ('compile_catalog', None))
82
83
cmdclass['compile_catalog'] = compile_catalog
84
cmdclass['extract_messages'] = extract_messages
0 commit comments