Add space to user message
This commit is contained in:
parent
ee05e2c824
commit
341554850b
3 changed files with 3 additions and 3 deletions
2
PKGBUILD
2
PKGBUILD
|
|
@ -1,6 +1,6 @@
|
|||
# Maintainer: Eric Torres <erictorres4@protonmail.com>
|
||||
pkgname=file-scripts
|
||||
pkgver=1.1.0
|
||||
pkgver=1.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="Various scripts for performing file-related operations such as editing and deleting."
|
||||
arch=(any)
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@ if __name__ == "__main__":
|
|||
print()
|
||||
|
||||
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:
|
||||
exit(error.E_INTERRUPT)
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -15,7 +15,7 @@ with open("README", "r") as fh:
|
|||
# ========== Package Setup ==========
|
||||
setuptools.setup(
|
||||
name="file_scripts",
|
||||
version="1.1.0",
|
||||
version="1.1.1",
|
||||
author="Eric Torres",
|
||||
author_email="erictorres4@protonmail.com",
|
||||
description="File-related helper scripts",
|
||||
|
|
|
|||
Loading…
Reference in a new issue