repo.or.cz
/
opentx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix doc path
[opentx.git]
/
radio
/
util
/
capitalize.py
blob
ac087168d845657e8a3bf3dc085597af6605780b
1
#!/usr/bin/env python
2
3
import
glob
4
import
os
5
6
for
f
in
glob
.
glob
(
"*.bmp"
) +
glob
.
glob
(
"*.BMP"
):
7
t
=
f
.
title
()
8
if
f
!=
t
:
9
os
.
rename
(
f
,
t
)