Browse code

Remove version number.

Not particularly useful given it is not updated that often.

José Fonseca authored on 09/05/2013 07:33:13
Showing 1 changed files

  • xdot.py index 4e6e5f9..a6c7cd5 100755
... ...
@@ -20,8 +20,6 @@
20 20
 
21 21
 __author__ = "Jose Fonseca"
22 22
 
23
-__version__ = "0.4"
24
-
25 23
 
26 24
 import os
27 25
 import sys
... ...
@@ -1917,8 +1915,7 @@ def main():
1917 1915
     import optparse
1918 1916
 
1919 1917
     parser = optparse.OptionParser(
1920
-        usage='\n\t%prog [file]',
1921
-        version='%%prog %s' % __version__)
1918
+        usage='\n\t%prog [file]')
1922 1919
     parser.add_option(
1923 1920
         '-f', '--filter',
1924 1921
         type='choice', choices=('dot', 'neato', 'twopi', 'circo', 'fdp'),