upgrade wakatime-cli to v10.3.0

This commit is contained in:
Alan Hamlett 2018-09-30 21:49:26 -07:00
parent 17e5d1b211
commit 42f83e3df5
3 changed files with 21 additions and 5 deletions

View file

@ -12,10 +12,10 @@
import logging
import os
import platform
from subprocess import Popen, PIPE
from subprocess import PIPE
from .base import BaseProject
from ..compat import u, open
from ..compat import u, open, Popen
try:
from collections import OrderedDict
except ImportError: # pragma: nocover
@ -86,8 +86,6 @@ class Subversion(BaseProject):
return info
def _find_project_base(self, path, found=False):
if platform.system() == 'Windows':
return False # pragma: nocover
path = os.path.realpath(path)
if os.path.isfile(path):
path = os.path.split(path)[0]