Code review comment for lp:~ai-2/ijson/more-ptr-trunc

Revision history for this message
Ivan Sagalaev (isagalaev) wrote :

> --- ijson/lib.py 2010-12-03 13:48:18 +0000
> +++ ijson/lib.py 2010-12-04 11:51:13 +0000
>
> @@ -7,7 +7,7 @@
>
> if name is None:
> import os
> hardy64_name = '/usr/lib/libyajl.so.1'
> - os.path.exists(hardy64_name):
> + if os.path.exists(hardy64_name):
> name = hardy64_name

Doh... Sorry for this, I was in a hurry :-(

Thanks for the fix!

« Back to merge proposal