-
Notifications
You must be signed in to change notification settings - Fork 63
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
Works with python3 #6
base: master
Are you sure you want to change the base?
Conversation
# the content of N records are ignored | ||
elif line[0] == 'V': | ||
match = re.search(Entladebericht.v_record_re, line) | ||
newdict = {} | ||
if not match: | ||
print 'no match', repr(line) | ||
('no match', repr(line)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you delete this print?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well spotted, I think that one was deleted in eror.
@@ -8,7 +8,7 @@ | |||
""" | |||
|
|||
|
|||
import binpack_simple | |||
import pyshipping.binpack_simple |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have this error when calling the funtion binpack
below this line
NameError: name 'binpack_simple' is not defined
In my opinion, we should do something like this:
import pyshipping.binpack_simple as binpack_simple
No description provided.