* doc improvement

* relative imports not allowed when module is not loaded (https://www.python.org/dev/peps/pep-0366/)
This commit is contained in:
Belegnar 2017-03-10 14:13:22 +03:00
parent b5dfc5d514
commit 0e44657963
2 changed files with 5 additions and 2 deletions

View File

@ -56,7 +56,7 @@ Installing Telethon manually
(`GitHub <https://github.com/ricmoo/pyaes>`_, `package index <https://pypi.python.org/pypi/pyaes>`_)
2. Clone Telethon's GitHub repository: ``git clone https://github.com/LonamiWebs/Telethon.git``
3. Enter the cloned repository: ``cd Telethon``
4. Run the code generator: ``python3 telethon_generator/tl_generator.py``
4. Run the code generator: ``cd telethon_generator && python3 tl_generator.py``
5. Done!
Running Telethon

View File

@ -2,7 +2,10 @@ import os
import re
import shutil
from .parser import SourceBuilder, TLParser
try:
from .parser import SourceBuilder, TLParser
except (ImportError, SystemError):
from parser import SourceBuilder, TLParser
def get_output_path(normal_path):