Skip to content

Commit 10489bf

Browse files
committed
Corrigindo identação
1 parent 08c6113 commit 10489bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/debugging-logging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Vejam o exemplo nesse programa, com falha:
2525
logging.debug('Start of factorial(%s%%)' % (n))
2626
total = 1
2727
for i in range(n+1):
28-
total *= i
29-
logging.debug('i is ' + str(i) + ', total is ' + str(total))
28+
total *= i
29+
logging.debug('i is ' + str(i) + ', total is ' + str(total))
3030
logging.debug('End of factorial(%s%%)' % (n))
3131
return total
3232

0 commit comments

Comments
 (0)