comparison rhodecode/bin/base.py @ 4186:7e5f8c12a3fc kallithea-2.2.5-rebrand

First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:04:28 -0400
parents e5cb0a4e061a
children
comparison
equal deleted inserted replaced
4185:aaa7c3331186 4186:7e5f8c12a3fc
10 # GNU General Public License for more details. 10 # GNU General Public License for more details.
11 # 11 #
12 # You should have received a copy of the GNU General Public License 12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>. 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 """ 14 """
15 rhodecode.bin.base 15 kallithea.bin.base
16 ~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~
17 17
18 Base utils for shell scripts 18 Base utils for shell scripts
19 19
20 :created_on: May 09, 2013 20 :created_on: May 09, 2013
28 import random 28 import random
29 import urllib2 29 import urllib2
30 import pprint 30 import pprint
31 31
32 try: 32 try:
33 from rhodecode.lib.ext_json import json 33 from kallithea.lib.ext_json import json
34 except ImportError: 34 except ImportError:
35 try: 35 try:
36 import simplejson as json 36 import simplejson as json
37 except ImportError: 37 except ImportError:
38 import json 38 import json