Skip to content

Commit

Permalink
Merge pull request #10 from codesrg/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
codesrg authored Nov 27, 2022
2 parents c427132 + 393194a commit 0233ed9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ authors = [
{ name = "srg", email = "srg.code@pm.me" },
]
dependencies = [
"pyperclip",
"srutil",
"rsa"
]
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
rsa~=4.8
srutil~=1.0.0
pyperclip==1.8.2
srutil~=1.0.0
2 changes: 1 addition & 1 deletion sipher/sipherutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def retrieve(file_name: str, path: str, file_format: str = None, mode: str = 'r'
path = os.getcwd()
if not file_format:
file_format = ''
path += "/{}.{}".format(file_name, file_format)
path += "/{}.{}".format(file_name, file_format).rstrip('.')
file = Path(path)
with open(file, mode) as f:
to_return = f.read()
Expand Down

0 comments on commit 0233ed9

Please sign in to comment.