Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
Fix a bug with the no MBR player found variable.
Properly escape a backslash in a string that is printed to the console.
  • Loading branch information
elliot-huffman committed Nov 12, 2018
1 parent 34e34ca commit e3369c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AutoConvert.py
Expand Up @@ -60,7 +60,7 @@ def locate_nbr(self):
clear_screen()
print("Maybe we missed it...\nDo you have the NBR player installed already?")
me_nbr_already_installed = str(input("Y or N: "))
if nbr_already_installed == "y":
if me_nbr_already_installed == "y":
self.custom_nbr_location()
self.locate_nbr()
else:
Expand Down Expand Up @@ -731,7 +731,7 @@ def global_toggle_showui():

def global_output_dir():
clear_screen()
print("This sets the directory that will contain all of the converted ARFs. By default this setting is .\Converted")
print("This sets the directory that will contain all of the converted ARFs. By default this setting is .\\Converted")
print("The current output dir is: %s" % vars_system.init_vars["output_file_dir"])
print("\nEnter the full path to the directory that will contain the converted ARF files or blank to do nothing.")
me_global_output_dir = input("Press Enter/Return when you are ready to continue: ")
Expand Down

0 comments on commit e3369c8

Please sign in to comment.