Remove debug.
authorCarl Hetherington <cth@carlh.net>
Tue, 16 Jul 2013 23:57:13 +0000 (00:57 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 16 Jul 2013 23:57:13 +0000 (00:57 +0100)
wscript

diff --git a/wscript b/wscript
index 1d699ca0741974fe8d400448b0ce9939266139d4..4b4c1342ddf758efb72856fe27ed32af28dfed48 100644 (file)
--- a/wscript
+++ b/wscript
@@ -242,17 +242,13 @@ def dist(ctx):
 
 def create_version_cc(version, cxx_flags):
     commit = git_revision()
-    print "1: ", commit
     if commit is None and os.path.exists('.git_revision'):
         f = open('.git_revision', 'r')
         commit = f.readline().strip()
-        print "2: ", commit
     
     if commit is None:
         commit = 'release'
 
-    print commit
-
     try:
         text =  '#include "version.h"\n'
         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit