Changeset - 30ab2e403a20
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2012-05-13 17:08:32
marcin@python-works.com
fix py2.5 compatibility for rcext
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
rhodecode/config/rcextensions/make_rcextensions.py
Show inline comments
 
@@ -18,24 +18,25 @@
 
# This program is distributed in the hope that it will be useful,
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
# GNU General Public License for more details.
 
#
 
# You should have received a copy of the GNU General Public License
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
import os
 
import sys
 
import pkg_resources
 
import traceback
 
import logging
 
from __future__ import with_statement
 
from os.path import dirname as dn, join as jn
 

	
 
#to get the rhodecode import
 
sys.path.append(dn(dn(dn(os.path.realpath(__file__)))))
 

	
 
from rhodecode.lib.utils import BasePasterCommand, Command, ask_ok
 

	
 
log = logging.getLogger(__name__)
 

	
 

	
 
class MakeRcExt(BasePasterCommand):
 

	
0 comments (0 inline, 0 general)