diff --git a/src/libprs500/__init__.py b/src/libprs500/__init__.py index a35510a8f1..b61f4b68c0 100644 --- a/src/libprs500/__init__.py +++ b/src/libprs500/__init__.py @@ -37,7 +37,7 @@ You may have to adjust the GROUP and the location of the rules file to suit your distribution. """ -__version__ = "0.3.4" +__version__ = "0.3.5" __docformat__ = "epytext" __author__ = "Kovid Goyal " diff --git a/src/libprs500/libusb.py b/src/libprs500/libusb.py index dcdf974dc8..dc29846d26 100644 --- a/src/libprs500/libusb.py +++ b/src/libprs500/libusb.py @@ -29,7 +29,7 @@ elif isosx: _libusb_name = 'libusb.dylib' _libusb = cdll.LoadLibrary(_libusb_name) -# TODO: Need to set this in a platform dependednt way (limits.h in linux) +# TODO: Need to set this in a platform dependent way (limits.h in linux) PATH_MAX = 4096 if iswindows: PATH_MAX = 511