Skip to content

Commit fbd8fae

Browse files
committed
Potential fix for 2to3 too long line
1 parent 0ab95a8 commit fbd8fae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pycallgraph/output/output.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ def set_config(self, config):
2424
the output module config variables.
2525
'''
2626
for k, v in config.__dict__.iteritems():
27-
if hasattr(self, k) and callable(getattr(self, k)):
27+
if hasattr(self, k) and \
28+
callable(getattr(self, k)):
2829
continue
2930
setattr(self, k, v)
3031

0 commit comments

Comments
 (0)