Skip to content

Commit

Permalink
change imports for issue #53
Browse files Browse the repository at this point in the history
  • Loading branch information
Laharah committed Jan 30, 2023
1 parent 9709fcb commit e3cd1ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion filebottool/killableprocess.py
Expand Up @@ -66,7 +66,7 @@ def __str__(self):
mswindows = (sys.platform == "win32")

if mswindows:
import winprocess
from . import winprocess
else:
import signal

Expand Down
2 changes: 1 addition & 1 deletion filebottool/winprocess.py
Expand Up @@ -24,7 +24,7 @@
# DEALINGS IN THE SOFTWARE.

from ctypes import c_void_p, POINTER, sizeof, Structure, windll, WinError, WINFUNCTYPE
from wintypes import BOOL, BYTE, DWORD, HANDLE, LPCWSTR, LPWSTR, UINT, WORD
from .wintypes import BOOL, BYTE, DWORD, HANDLE, LPCWSTR, LPWSTR, UINT, WORD

LPVOID = c_void_p
LPBYTE = POINTER(BYTE)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -42,7 +42,7 @@
__plugin_name__ = "FileBotTool"
__author__ = "laharah"
__author_email__ = "laharah+fbt@gmail.com"
__version__ = "2.0.2"
__version__ = "2.0.3"
__url__ = "https://github.com/Laharah/deluge-FileBotTool"
__license__ = "GPLv3"
__description__ = "Integrates FileBot functionality to Deluge"
Expand Down

0 comments on commit e3cd1ba

Please sign in to comment.