Skip to content

Commit

Permalink
Fix constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee authored and Lee committed Dec 10, 2016
1 parent ec58b08 commit 0ecec63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion piaportforward/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@


class Core(CorePluginBase):
def __init__(self):
def __init__(self, plugin_name):
super(Core, self).__init__(plugin_name)
self.successfully_acquired_port = False
self.pia_username = ''
self.pia_password = ''
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
__plugin_name__ = "PIAPortForward"
__author__ = "Lee Nguyen"
__author_email__ = "fake.me.now.and.forever@gmail.com"
__version__ = "1.1"
__version__ = "1.1.1"
__url__ = "https://github.com/SillyGoat/PIAPortForward"
__license__ = "GPLv3"
__description__ = "Opens listening port on PIA VPN Server"
Expand Down

0 comments on commit 0ecec63

Please sign in to comment.