-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jug status not working #10
Comments
luispedro
added a commit
that referenced
this issue
Jun 4, 2014
Currently it does not work correctly in Python 3.4 as there is a mixup of unicode and bytestrings. This is the root cause of issue #10
This actually uncovered a pretty serious bug with Python3, so I will backport the fix and release a version 1.0.1 Thanks for the report. |
Thanks for the fix. |
luispedro
added a commit
that referenced
this issue
Jun 12, 2014
Currently it does not work correctly in Python 3.4 as there is a mixup of unicode and bytestrings. This is the root cause of issue #10
luispedro
added a commit
that referenced
this issue
Jun 12, 2014
This causes many problems in Python3+. Closes #10 It also fixes a more serious bug whereby all of the keys in a jugdir started with b'! This was because a conversation from bytes to str was causing the prefix b' to be added to all keys!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
First of all thanks for this great lib! I am thinking about moving some of my code to it. However I have a problem here (python 3.3.5) with jug status. For example if I am running the prime numbers example and jug status primes.py always output :
Even though the computations are finished as I can see by doing jug shell primes.py
I did look around in jug/subcommands/status.py and by commenting this line:
https://github.com/luispedro/jug/blob/master/jug/subcommands/status.py#L186
I have the correct behaviour.
Thanks!
The text was updated successfully, but these errors were encountered: