Skip to content

Commit

Permalink
fixed missing self
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Jul 28, 2017
1 parent f41732b commit f9e9504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zugbruecke/core/session_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def load_library(self, dll_name, dll_type, dll_param = {}):
return self.dll_dict[dll_name]


def path_unix_to_wine(in_path):
def path_unix_to_wine(self, in_path):

# If in stage 1, fire up stage 2
if self.stage == 1:
Expand All @@ -178,7 +178,7 @@ def path_unix_to_wine(in_path):
return self.client.path_unix_to_wine(in_path)


def path_wine_to_unix(in_path):
def path_wine_to_unix(self, in_path):

# If in stage 1, fire up stage 2
if self.stage == 1:
Expand Down

0 comments on commit f9e9504

Please sign in to comment.