Skip to content

Commit

Permalink
fix bug: string was not quoted
Browse files Browse the repository at this point in the history
fix bug: string was not quoted
  • Loading branch information
ericzhang-cn authored Nov 25, 2017
1 parent 516a203 commit 9860c61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions angel-ps/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

if len(JARS_PATH) == 1:
JARS_PATH = JARS_PATH[0]
elif (os.path.isfile("../RELEASE") and len(glob.glob(../lib/angel*ps*core*.jar)) == 1):
elif (os.path.isfile("../RELEASE") and len(glob.glob("../lib/angel*ps*core*.jar")) == 1):
JARS_PATH = os.path.join(ANGEL_HOME, "jars")
elif len(JARS_PATH) == 0 and not os.path.exists(TEMP_PATH):
print(incorrect_invocation_message, file=sys.stderr)
Expand Down Expand Up @@ -88,4 +88,4 @@
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7']
)
)

0 comments on commit 9860c61

Please sign in to comment.