File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -27,16 +27,19 @@ def g(*args, **kwargs):
2727 raise e
2828 return g
2929
30+ @guard
3031def error (* args , ** kwargs ):
3132 print (Colors .FAIL , end = "" )
3233 print (* args , ** kwargs )
3334 print (Colors .END , end = "" )
3435
36+ @guard
3537def success (* args , ** kwargs ):
3638 print (Colors .OKGREEN , end = "" )
3739 print (* args , ** kwargs )
3840 print (Colors .END , end = "" )
3941
42+ @guard
4043def warning (* args , ** kwargs ):
4144 print (Colors .WARNING , end = "" )
4245 print (* args , ** kwargs )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def check_dir(d, hint = ""):
1717 exit ()
1818
1919check_dir (build , "Hint: Are you sure you built the docs as described in BUILDING.md?" )
20- check_dir (target , "Hint: Are you sure you built the docs as described in BUILDING.md?" )
20+ check_dir (target , "Hint: Are you sure you built the HTML files as described in BUILDING.md?" )
2121check_dir (docs , "Hint: Did you clone the repository succesfully?" )
2222
2323project = 'Yazbel Python Belgeleri'
You can’t perform that action at this time.
0 commit comments