Rename ~/.humbugrc to ~/.zuliprc.

(imported from commit a0d53dd20097a56971874dc1d84c6f95267e84f2)
This commit is contained in:
Tim Abbott
2013-08-07 11:36:46 -04:00
committed by Tim Abbott
parent d6c87f35e2
commit 2ea1bb05a5
22 changed files with 31 additions and 28 deletions

View File

@@ -9,9 +9,9 @@ class Command(BaseCommand):
help = """Reset all colors for a person to the default grey"""
def handle(self, *args, **options):
config_file = os.path.join(os.environ["HOME"], ".humbugrc")
config_file = os.path.join(os.environ["HOME"], ".zuliprc")
if not os.path.exists(config_file):
raise RuntimeError("No ~/.humbugrc found")
raise RuntimeError("No ~/.zuliprc found")
config = SafeConfigParser()
with file(config_file, 'r') as f:
config.readfp(f, config_file)