Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Commit e117724

Browse files
committed
Fix width to properly display in table of latexpdf output.
1 parent 6927103 commit e117724

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/twisted_deferred.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
def multiply(x):
66
result = x * 2
77
d = defer.Deferred()
8-
reactor.callLater(1.0, d.callback, result)
8+
reactor.callLater(1.0, d.callback,
9+
result)
910
return d
1011

1112

0 commit comments

Comments
 (0)