Skip to content

Commit 068d4b3

Browse files
author
4b796c65
committed
Taking out debug lines.
1 parent 141eecb commit 068d4b3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ def getVersion():
1313
if os.path.exists('.svn'): # if .svn/ doesn't even exist, don't bother running svnversion
1414
svnversion = subprocess.Popen('svnversion -n', shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
1515
REVISION = svnversion.communicate()[0].decode() # get stdout
16-
print(REVISION)
1716
if not REVISION or not any([c.isdigit() for c in REVISION]):
1817
# no numbers so assume an error
1918
# but likely a real user install, so get version from file
@@ -28,7 +27,7 @@ def getVersion():
2827
return VERSION
2928

3029
VERSION = getVersion()
31-
print('TDL version is %s' % VERSION)
30+
# print('TDL version is %s' % VERSION)
3231

3332
setup(name='tdl',
3433
version=VERSION,

tdl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0r19
1+
1.0r23

0 commit comments

Comments
 (0)