Print the path to the current folder if outputsubfolder is an empty string.

This commit is contained in:
Steven Black
2025-07-12 22:16:23 -04:00
parent 026a9fab06
commit 8ae357794a

View File

@@ -327,7 +327,7 @@ def main():
print_success(
"Success! The hosts file has been saved in folder "
+ outputsubfolder
+ (outputsubfolder if outputsubfolder else "./")
+ "\nIt contains "
+ "{:,}".format(numberofrules)
+ " unique entries."