Show More
@@ -136,7 +136,7 b' def action_logger(user, action, repo, ip' | |||
|
136 | 136 | elif isinstance(user, basestring): |
|
137 | 137 | user_obj = User.get_by_username(user) |
|
138 | 138 | else: |
|
139 | raise Exception('You have to provide user object or username') | |
|
139 | raise Exception('You have to provide a user object or a username') | |
|
140 | 140 | |
|
141 | 141 | if hasattr(repo, 'repo_id'): |
|
142 | 142 | repo_obj = Repository.get(repo.repo_id) |
@@ -255,7 +255,7 b' def is_valid_repos_group(repos_group_nam' | |||
|
255 | 255 | return False |
|
256 | 256 | |
|
257 | 257 | |
|
258 |
def ask_ok(prompt, retries=4, complaint='Yes or no |
|
|
258 | def ask_ok(prompt, retries=4, complaint='Yes or no please!'): | |
|
259 | 259 | while True: |
|
260 | 260 | ok = raw_input(prompt) |
|
261 | 261 | if ok in ('y', 'ye', 'yes'): |
@@ -299,7 +299,7 b" def make_ui(read_from='file', path=None," | |||
|
299 | 299 | |
|
300 | 300 | if read_from == 'file': |
|
301 | 301 | if not os.path.isfile(path): |
|
302 | log.debug('hgrc file is not present at %s skipping...' % path) | |
|
302 | log.debug('hgrc file is not present at %s, skipping...' % path) | |
|
303 | 303 | return False |
|
304 | 304 | log.debug('reading hgrc from %s' % path) |
|
305 | 305 | cfg = config.config() |
@@ -423,7 +423,7 b' def repo2db_mapper(initial_repo_list, re' | |||
|
423 | 423 | db_repo = rm.get_by_repo_name(name) |
|
424 | 424 | # found repo that is on filesystem not in RhodeCode database |
|
425 | 425 | if not db_repo: |
|
426 | log.info('repository %s not found creating now' % name) | |
|
426 | log.info('repository %s not found, creating now' % name) | |
|
427 | 427 | added.append(name) |
|
428 | 428 | desc = (repo.description |
|
429 | 429 | if repo.description != 'unknown' |
@@ -446,7 +446,7 b' def repo2db_mapper(initial_repo_list, re' | |||
|
446 | 446 | # during starting install all cache keys for all repositories in the |
|
447 | 447 | # system, this will register all repos and multiple instances |
|
448 | 448 | key, _prefix, _org_key = CacheInvalidation._get_key(name) |
|
449 | log.debug("Creating cache key for %s instance_id:`%s`" % (name, _prefix)) | |
|
449 | log.debug("Creating a cache key for %s instance_id:`%s`" % (name, _prefix)) | |
|
450 | 450 | CacheInvalidation._get_or_create_key(key, _prefix, _org_key, commit=False) |
|
451 | 451 | sa.commit() |
|
452 | 452 | removed = [] |
@@ -454,7 +454,7 b' def repo2db_mapper(initial_repo_list, re' | |||
|
454 | 454 | # remove from database those repositories that are not in the filesystem |
|
455 | 455 | for repo in sa.query(Repository).all(): |
|
456 | 456 | if repo.repo_name not in initial_repo_list.keys(): |
|
457 |
log.debug("Removing non |
|
|
457 | log.debug("Removing non-existing repository found in db `%s`" % | |
|
458 | 458 | repo.repo_name) |
|
459 | 459 | try: |
|
460 | 460 | sa.delete(repo) |
@@ -677,7 +677,7 b' class BasePasterCommand(Command):' | |||
|
677 | 677 | def check_git_version(): |
|
678 | 678 | """ |
|
679 | 679 | Checks what version of git is installed in system, and issues a warning |
|
680 | if it's to old for RhodeCode to properly work. | |
|
680 | if it's too old for RhodeCode to properly work. | |
|
681 | 681 | """ |
|
682 | 682 | import subprocess |
|
683 | 683 | from distutils.version import StrictVersion |
@@ -703,7 +703,7 b' def check_git_version():' | |||
|
703 | 703 | if stderr: |
|
704 | 704 | log.warning('Unable to detect git version org error was:%r' % stderr) |
|
705 | 705 | elif to_old_git: |
|
706 | log.warning('RhodeCode detected git version %s, which is to old ' | |
|
707 |
'for the system to function properly |
|
|
706 | log.warning('RhodeCode detected git version %s, which is too old ' | |
|
707 | 'for the system to function properly. Make sure ' | |
|
708 | 708 | 'it is at least in version %s' % (ver, req_ver)) |
|
709 | return _ver No newline at end of file | |
|
709 | return _ver |
General Comments 0
You need to be logged in to leave comments.
Login now