Add space to user message

This commit is contained in:
Eric Torres 2022-03-31 12:45:13 -07:00
parent ee05e2c824
commit 341554850b
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Maintainer: Eric Torres <erictorres4@protonmail.com> # Maintainer: Eric Torres <erictorres4@protonmail.com>
pkgname=file-scripts pkgname=file-scripts
pkgver=1.1.0 pkgver=1.1.1
pkgrel=1 pkgrel=1
pkgdesc="Various scripts for performing file-related operations such as editing and deleting." pkgdesc="Various scripts for performing file-related operations such as editing and deleting."
arch=(any) arch=(any)

View File

@ -151,7 +151,7 @@ if __name__ == "__main__":
print() print()
try: try:
user_response = input("Would you like to delete these files? (y/N)") user_response = input("Would you like to delete these files? [y/N]: ")
except KeyboardInterrupt: except KeyboardInterrupt:
exit(error.E_INTERRUPT) exit(error.E_INTERRUPT)

View File

@ -15,7 +15,7 @@ with open("README", "r") as fh:
# ========== Package Setup ========== # ========== Package Setup ==========
setuptools.setup( setuptools.setup(
name="file_scripts", name="file_scripts",
version="1.1.0", version="1.1.1",
author="Eric Torres", author="Eric Torres",
author_email="erictorres4@protonmail.com", author_email="erictorres4@protonmail.com",
description="File-related helper scripts", description="File-related helper scripts",