Switch to unified view

a/ForgeGit/forgegit/git_main.py b/ForgeGit/forgegit/git_main.py
...
...
59
                    cloned_from_path=cloned_from.full_fs_path,
59
                    cloned_from_path=cloned_from.full_fs_path,
60
                    cloned_from_name=cloned_from.app.config.script_name(),
60
                    cloned_from_name=cloned_from.app.config.script_name(),
61
                    cloned_from_url=cloned_from.full_fs_path)
61
                    cloned_from_url=cloned_from.full_fs_path)
62
            allura.tasks.repo_tasks.clone.post(msg)
62
            allura.tasks.repo_tasks.clone.post(msg)
63
        elif init_from_url:
63
        elif init_from_url:
64
            msg = dict(
64
            allura.tasks.repo_tasks.clone.post(
65
                cloned_from_path=None,
65
                cloned_from_path=None,
66
                cloned_from_name=None,
66
                cloned_from_name=None,
67
                cloned_from_url=init_from_url)
67
                cloned_from_url=init_from_url)
68
            allura.tasks.repo_tasks.clone.post(msg)
69
        else:
68
        else:
70
            allura.tasks.repo_tasks.init.post()
69
            allura.tasks.repo_tasks.init.post()