remove last print statement
This commit is contained in:
parent
7cf7a2d7b6
commit
1d93b751e3
|
@ -53,7 +53,6 @@ class CreateFolder(Ctk.CTkFrame):
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
os.makedirs(full_path)
|
os.makedirs(full_path)
|
||||||
print(f"Folder created at: {full_path}")
|
|
||||||
self.data_saver.create(full_path)
|
self.data_saver.create(full_path)
|
||||||
except OSError:
|
except OSError:
|
||||||
self.error_txt = "There occured an error creating the Folder"
|
self.error_txt = "There occured an error creating the Folder"
|
||||||
|
|
Loading…
Reference in New Issue