Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Gloryness committed Jun 18, 2020
1 parent 68f1c86 commit 3772b7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main/help_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def detect_urls_help(self):
self.add_label(self.help_win, "- Next, find that .exe file that you installed and place it anywhere on your machine.", '#cbdbfc', x=5, y=170, font=f)
self.add_label(self.help_win, "- Then go to 'Settings' in the 'File' tab and in Selenium Settings set the PATH to the .exe!", '#cbdbfc', x=5, y=200, font=f)
self.add_label(self.help_win, "- If your using the Firefox browser you can choose to link your Firefox profile (optional).", '#cbdbfc', x=5, y=230, font=f)
self.add_label(self.help_win, "- Other than that, you're ready to go!", '#cbdbfc', x=5, y=260, font=f)
self.add_label(self.help_win, "- When you open selenium, a command-line for the .exe will come up. Do not close it!", '#cbdbfc', x=5, y=260, font=f)

def downloading_videos_help(self):
self.add_label(self.help_win, "Downloading Videos - Help", '#cbdbfc', x=140, y=3, font=self.f)
Expand Down
4 changes: 2 additions & 2 deletions main/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def file_handling(self):
thread_event = threading.Event()
thread_event.wait(1.40)
try:
with open(f'exe.zip', 'wb') as install:
with open('exe.zip', 'wb') as install:
install.write(self.download.content)
except:
self.text_box.config(state=NORMAL)
Expand All @@ -109,7 +109,7 @@ def file_handling(self):
self.text_box.config(state=DISABLED)
thread_event = threading.Event()
thread_event.wait(1.60)
with ZipFile(f'exe.zip') as zipfile:
with ZipFile('exe.zip') as zipfile:
try:
zipfile.extractall(os.getcwd())
except AttributeError:
Expand Down

0 comments on commit 3772b7e

Please sign in to comment.