diff --git a/README.md b/README.md index 32b8014..f92878b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ $ pip install -r requirements.txt Run GUI ``` -$ apt-get install python3-tk # if you are using python3 +$ apt install python3-tk # if you are using python3 $ python src/gui-main.py ``` diff --git a/src/gui-main.py b/src/gui-main.py index 1b20d44..00466a9 100644 --- a/src/gui-main.py +++ b/src/gui-main.py @@ -20,12 +20,10 @@ def __init__(self, master): frame = tk.Frame(master) frame.pack() tk.Label(frame, text='Remove excel (.xlsx) workbook protection, ' - 'worksheet protections and read-only protec' - 'tion. \n' - '[1] Note that open password cannot be remo' - 'ved. \n' - '[2] .xls and other formats are not support' - 'ed.', + 'worksheet protections and read-only protection' + '. \n' + '[1] Open password cannot be removed. \n' + '[2] .xls and other formats are not supported.', compound=tk.LEFT, bitmap='questhead', wraplength=400, padx=10, justify=tk.LEFT).pack(side=tk.TOP, padx=5) buttom_frame = tk.Frame(frame)