Browse Source

cosmetic: remove spurious print in c2rst tool

Julius Pfrommer 7 years ago
parent
commit
47589fbab0
1 changed files with 0 additions and 2 deletions
  1. 0 2
      tools/c2rst.py

+ 0 - 2
tools/c2rst.py

@@ -67,8 +67,6 @@ with open(sys.argv[1]) as f:
     c = f.readlines()
 
 with open(sys.argv[2], 'w') as rst:
-    print(sys.argv[2])
-    print(last_line(c))
     in_doc = False
     last = last_line(c)
     for i in range(first_line(c), last+1):