Skip to content

Commit

Permalink
* variable bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jintin committed Jan 23, 2016
1 parent 0c1bfb8 commit 2bdcd18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# andle
[![PyPI version](https://badge.fury.io/py/andle.svg)](https://badge.fury.io/py/andle) [![Build Status](https://travis-ci.org/Jintin/andle.svg?branch=master)](https://travis-ci.org/Jintin/andle)
[![PyPI version](https://badge.fury.io/py/andle.svg)](https://badge.fury.io/py/andle) [![Build Status](https://travis-ci.org/Jintin/andle.svg?branch=master)](https://travis-ci.org/Jintin/andle) [![Code Climate](https://codeclimate.com/github/Jintin/andle/badges/gpa.svg)](https://codeclimate.com/github/Jintin/andle)

andle is an Android tool to help you sync dependencies, sdk or build tool version.

Expand Down
2 changes: 1 addition & 1 deletion andle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import andle.android
import andle.sdk

VERSION = "1.5.1"
VERSION = "1.5.2"


def update(path, dryrun, remote, gradle):
Expand Down
2 changes: 1 addition & 1 deletion andle/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def check_dependency(word, data):


def check_classpath(word, data):
if check_gradle and first.startswith("classpath"):
if check_gradle and word[0].startswith("classpath"):
check_version(word, data["dependency"], check_gradle)
return True
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='andle',
version='1.5.1',
version='1.5.2',
description='android dependency sync tool',
long_description='andle is a command line tool to help you sync dependencies, sdk or build tool version in gradle base Android projects.',
keywords='android gradle config build version dependency sync',
Expand Down

0 comments on commit 2bdcd18

Please sign in to comment.