Changed from 2-spaces per indentation level to 4, per PEP-8 standard.

This commit is contained in:
John Shanahan
2013-08-14 10:36:00 -04:00
parent b6b416e7ce
commit 7cf6291c8a
2 changed files with 14 additions and 14 deletions

10
install
View File

@ -4,9 +4,9 @@ import shutil
import sys
try:
shutil.copy('./cheat', '/usr/local/bin/')
shutil.copytree('./.cheat', expanduser('~') + '/.cheat')
print "cheat has been installed successfully."
shutil.copy('./cheat', '/usr/local/bin/')
shutil.copytree('./.cheat', expanduser('~') + '/.cheat')
print "cheat has been installed successfully."
except IOError as e:
print >> sys.stderr, "This installer must be run as root."
sys.exit(1)
print >> sys.stderr, "This installer must be run as root."
sys.exit(1)