Skip to content

Commit

Permalink
Merge pull request #11 from Manouchehri/windows
Browse files Browse the repository at this point in the history
Fix PATH bug (Windows)
  • Loading branch information
oostendo committed Aug 12, 2015
2 parents 28b7db3 + e49cb8a commit 827db97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zxing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def decode(self, files, try_harder = False, qr_only = False):

libraries = [self.location + "/" + l for l in self.libs]

cmd = [ c if c != "LIBS" else ":".join(libraries) for c in cmd ]
cmd = [ c if c != "LIBS" else os.pathsep.join(libraries) for c in cmd ]

# send one file, or multiple files in a list
SINGLE_FILE = False
Expand Down

0 comments on commit 827db97

Please sign in to comment.