Skip to content

Commit

Permalink
Removed faulty sys.exit()
Browse files Browse the repository at this point in the history
  • Loading branch information
MNThomson committed Jan 25, 2021
1 parent 1f5c78e commit 869ef09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Update.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import requests, webbrowser, sys

VERSION = "1.0.1"
VERSION = "1.0.2"
URL = 'https://github.com/MNThomson/ZoomBuddy/releases/latest'

def update():
Expand Down
3 changes: 1 addition & 2 deletions ZoomBuddy.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def manual():
except NameError:
print("Input Invalid")
sys.exit()

connect(meetingID, passWD)

def connect(meetingID, passWD):
Expand All @@ -93,7 +92,7 @@ def connect(meetingID, passWD):
Path = "%appdata%\\Zoom\\bin\\Zoom.exe"
else:
print("Operating System unknown. Please manually set this is the python file")
sys.exit()
sys.exit()

#Command to join zoom meeting
command= Path + " --url=zoommtg://zoom.us/join?confno=" + meetingID + "^&pwd=" + passWD
Expand Down

0 comments on commit 869ef09

Please sign in to comment.