Rename humbug_*_config.py to zulip_*_config.py.

(imported from commit a1d4dd22c59f812f0eb4875dc70c89ce96a4b90c)
This commit is contained in:
Tim Abbott 2013-08-07 11:55:22 -04:00 committed by Tim Abbott
parent 402701dc8e
commit 4611b40b12
8 changed files with 5 additions and 5 deletions

View file

@ -35,7 +35,7 @@ import subprocess
import os.path import os.path
sys.path.insert(0, os.path.dirname(__file__)) sys.path.insert(0, os.path.dirname(__file__))
import humbug_git_config as config import zulip_git_config as config
if config.HUMBUG_API_PATH is not None: if config.HUMBUG_API_PATH is not None:
sys.path.append(config.HUMBUG_API_PATH) sys.path.append(config.HUMBUG_API_PATH)

View file

@ -35,7 +35,7 @@ import os.path
import pysvn import pysvn
sys.path.insert(0, os.path.dirname(__file__)) sys.path.insert(0, os.path.dirname(__file__))
import humbug_svn_config as config import zulip_svn_config as config
if config.HUMBUG_API_PATH is not None: if config.HUMBUG_API_PATH is not None:
sys.path.append(config.HUMBUG_API_PATH) sys.path.append(config.HUMBUG_API_PATH)

View file

@ -23,9 +23,9 @@
# Zulip trac plugin -- sends humbugs when tickets change. # Zulip trac plugin -- sends humbugs when tickets change.
# #
# Install by copying this file and humbug_trac_config.py to the trac # Install by copying this file and zulip_trac_config.py to the trac
# plugins/ subdirectory, customizing the constants in # plugins/ subdirectory, customizing the constants in
# humbug_trac_config.py, and then adding "humbug_trac" to the # zulip_trac_config.py, and then adding "humbug_trac" to the
# components section of the conf/trac.ini file, like so: # components section of the conf/trac.ini file, like so:
# #
# [components] # [components]
@ -39,7 +39,7 @@ from trac.ticket import ITicketChangeListener
import sys import sys
import os.path import os.path
sys.path.insert(0, os.path.dirname(__file__)) sys.path.insert(0, os.path.dirname(__file__))
import humbug_trac_config as config import zulip_trac_config as config
if config.HUMBUG_API_PATH is not None: if config.HUMBUG_API_PATH is not None:
sys.path.append(config.HUMBUG_API_PATH) sys.path.append(config.HUMBUG_API_PATH)