rana-cli/wakatime/projects/mercurial.py

31 lines
502 B
Python
Raw Normal View History

2013-07-06 07:51:09 +00:00
# -*- 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):
def process(self):
return False
def name(self):
return None
2013-07-06 07:51:09 +00:00
2013-08-15 07:09:27 +00:00
def branch(self):
return None