comparison rhodecode/model/repo.py @ 1217:a3b2b4b4e440

fixes for issue #149
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 05 Apr 2011 18:04:06 +0200
parents af6ca51fb80f
children bf263968da47
comparison
equal deleted inserted replaced
1216:8363b0d20c41 1217:a3b2b4b4e440
8 :created_on: Jun 5, 2010 8 :created_on: Jun 5, 2010
9 :author: marcink 9 :author: marcink
10 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com> 10 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
11 :license: GPLv3, see COPYING for more details. 11 :license: GPLv3, see COPYING for more details.
12 """ 12 """
13 # This program is free software; you can redistribute it and/or 13 # This program is free software: you can redistribute it and/or modify
14 # modify it under the terms of the GNU General Public License 14 # it under the terms of the GNU General Public License as published by
15 # as published by the Free Software Foundation; version 2 15 # the Free Software Foundation, either version 3 of the License, or
16 # of the License or (at your opinion) any later version of the license. 16 # (at your option) any later version.
17 # 17 #
18 # This program is distributed in the hope that it will be useful, 18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of 19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details. 21 # GNU General Public License for more details.
22 # 22 #
23 # You should have received a copy of the GNU General Public License 23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software 24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
26 # MA 02110-1301, USA.
27 import os 25 import os
28 import shutil 26 import shutil
29 import logging 27 import logging
30 import traceback 28 import traceback
31 from datetime import datetime 29 from datetime import datetime