Skip to content

Commit bb1e06d

Browse files
authored
Merge pull request #283 from rg3915/pelican
Corrigindo identação
2 parents 08c6113 + 10489bf commit bb1e06d

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)