mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-25 19:03:46 +03:00
Fix setup.py calling generate with the wrong arguments
This commit is contained in:
parent
19398d75be
commit
b20dc3b804
4
setup.py
4
setup.py
|
@ -54,7 +54,7 @@ DOCS_IN_RES = GENERATOR_DIR / 'data/html'
|
||||||
DOCS_OUT = Path('docs')
|
DOCS_OUT = Path('docs')
|
||||||
|
|
||||||
|
|
||||||
def generate(action, which):
|
def generate(which, action='gen'):
|
||||||
from telethon_generator.parsers import\
|
from telethon_generator.parsers import\
|
||||||
parse_errors, parse_methods, parse_tl, find_layer
|
parse_errors, parse_methods, parse_tl, find_layer
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@ def generate(action, which):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
if len(argv) >= 2 and argv[1] in ('gen', 'clean'):
|
if len(argv) >= 2 and argv[1] in ('gen', 'clean'):
|
||||||
generate(argv[1], argv[2:])
|
generate(argv[2:], argv[1])
|
||||||
|
|
||||||
elif len(argv) >= 2 and argv[1] == 'pypi':
|
elif len(argv) >= 2 and argv[1] == 'pypi':
|
||||||
# (Re)generate the code to make sure we don't push without it
|
# (Re)generate the code to make sure we don't push without it
|
||||||
|
|
Loading…
Reference in New Issue
Block a user