Skip to content

Commit

Permalink
Fix import error
Browse files Browse the repository at this point in the history
  • Loading branch information
sabeechen committed Oct 28, 2023
1 parent db807a2 commit fc1b1b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decrypt-ha-backup/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import tempfile
import platform
from pathlib import Path
from hacked_secure_tar_file import HackedSecureTarFile
from .hacked_secure_tar_file import HackedSecureTarFile

class FailureError(Exception):
"""Indicates a failure with a user readable message attached"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(include=['decrypt-ha-backup']),
packages=find_packages(),
version='2023.10.28.1',
description='Decryption utility for Home Assistant backups',
long_description=long_description,
Expand Down

0 comments on commit fc1b1b9

Please sign in to comment.