Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
YM162 committed Jun 14, 2023
1 parent de7fd5c commit 44b6e2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gulagcleaner/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def main():

# Check for the -v argument
if '-v' in sys.argv:
print("Current version: 0.6.3")
print("Current version: 0.6.4")
return

# Get the pdf_path argument
Expand Down Expand Up @@ -65,7 +65,7 @@ def main():
else:
method = "new"
intermediate = False

#Extract metadata
try:
metadict = extract_metadata(pdf_path)
Expand All @@ -78,12 +78,12 @@ def main():
print("Universidad: " + metadict["Universidad"])
except Exception as e:
print("Failed to extract metadata:", e)

# Call the cleaning function
return_msg = clean_pdf(pdf_path, output_path, method)

if return_msg["Success"]:
print("Cleaning successful. File saved in", return_msg["return_path"])

else:
print("Error:", return_msg["Error"])

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = gulagcleaner
version = 0.6.3
version = 0.6.4
author = YM162
author_email = [email protected]
description = Ad removal tool for PDFs written in python.
Expand Down

0 comments on commit 44b6e2b

Please sign in to comment.