Navigation Menu

Skip to content

Commit

Permalink
Fixed another E231
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Jun 6, 2014
1 parent 36cac80 commit 93e06c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Modules/python.cxx
Expand Up @@ -3901,7 +3901,7 @@ class PYTHON:public Language {
Printv(base_class, bname, NIL);
b = Next(b);
if (b.item) {
Putc(',', base_class);
Printv(base_class, ", ", NIL);
}
}
}
Expand All @@ -3922,7 +3922,7 @@ class PYTHON:public Language {
String *abcs = Getattr(n, "feature:python:abc");
if (py3 && abcs) {
if (Len(base_class)) {
Putc(',', base_class);
Printv(base_class, ", ", NIL);
}
Printv(base_class, abcs, NIL);
}
Expand Down

0 comments on commit 93e06c0

Please sign in to comment.