Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
Fix spelling
  • Loading branch information
elliot-huffman committed Nov 12, 2018
1 parent e3369c8 commit 0c01b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AutoConvert.py
Expand Up @@ -50,7 +50,7 @@ def check_os(self):


def locate_nbr(self):
if not self.check_file_existance(self.init_vars["nbr_path"]):
if not self.check_file_existence(self.init_vars["nbr_path"]):
print("The system could not find the NBR player.\nWould you like to download it?")
me_locate_nbr = str(input("\nY or N: "))
if me_locate_nbr.lower() == "y":
Expand All @@ -76,7 +76,7 @@ def locate_nbr(self):
# download the program. If the user does not want to then it stops the script and tells the user that it is required.


def check_file_existance(self, file_path):
def check_file_existence(self, file_path):
result = path.exists(file_path)
return result
# Checks the given file path to see if the file exists and returns true or false.
Expand Down

0 comments on commit 0c01b64

Please sign in to comment.