Skip to content

Instantly share code, notes, and snippets.

@jsoncorwin
Created October 2, 2013 22:58
Show Gist options
  • Save jsoncorwin/6801789 to your computer and use it in GitHub Desktop.
Save jsoncorwin/6801789 to your computer and use it in GitHub Desktop.
Automatically converts my commits to iOS repo to TitleCase to prevent driving my co-founder crazy
#!/usr/bin/env python
import sys
filename = sys.argv[1]
with open(filename, 'r+w') as f:
msg = f.read()
msg = msg.title()
f.seek(0)
f.write(msg)
exit(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment