vim-rana-local/plugin/packages/wakatime/wakatime/projects/mercurial.py

31 lines
502 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
wakatime.projects.mercurial
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Information about the mercurial project for a given file.
:copyright: (c) 2013 Alan Hamlett.
:license: BSD, see LICENSE for more details.
"""
import logging
import os
from .base import BaseProject
log = logging.getLogger(__name__)
class Mercurial(BaseProject):
2013-07-10 03:15:01 +00:00
def process(self):
return False
def name(self):
return None
def branch(self):
return None