Skip to content

Commit

Permalink
bugfix: LocalFsClient super call should be py2 compatible (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
danfrankj authored and matthewwardrop committed Aug 28, 2018
1 parent f88237c commit 49f7073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omniduct/filesystems/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _init(self):

def _prepare(self):
assert self.remote is None, "LocalFsClient cannot be used in conjunction with a remote client."
super()._prepare()
super(LocalFsClient, self)._prepare()

def _connect(self):
pass
Expand Down

0 comments on commit 49f7073

Please sign in to comment.