diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-05-28 22:03:51 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-05-28 22:03:51 +0200 |
commit | facc202a9110a3fc1339802b7fb69c20ac598947 (patch) | |
tree | 79df0ce4e95d6e38fbace6ea32cbd0d8a3050a7d | |
parent | svn + gentoo = no (diff) | |
download | java-config-facc202a9110a3fc1339802b7fb69c20ac598947.tar.gz java-config-facc202a9110a3fc1339802b7fb69c20ac598947.tar.bz2 java-config-facc202a9110a3fc1339802b7fb69c20ac598947.zip |
fix a typo
-rw-r--r-- | setup.py | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -107,8 +107,12 @@ from distutils.core import setup eprefix = os.getenv('EPREFIX', '') -setup ( - cmdclass={'build' : jc_build, 'test' : jc_test, 'install' : jc_install, 'sdist' : jc_sdist}, +setup( + cmdclass = { + 'build' : jc_build, + 'test' : jc_test, + 'install' : jc_install, + }, name = 'java-config', version = package_version, description = 'java enviroment configuration tool', @@ -116,7 +120,7 @@ setup ( """ java-config is a tool for configuring various enviroment variables and configuration files involved in the java - enviroment for Gentoo Linux. + environment for Gentoo Linux. """, maintainer = 'Gentoo Java Team', maintainer_email = 'java@gentoo.org', |