viewgit/index.php:465 Only variables should be passed by reference [2048]

viewgit/index.php:466 Non-static method GeSHi::get_language_name_from_extension() should not be called statically [2048]

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4.  
  5. from distutils.core import setup
  6.  
  7. setup(name = 'pywhoisd',
  8. version = '0.1',
  9. description = 'pywhois daemon',
  10. author = 'Leonardo Robol',
  11. author_email = 'leo@robol.it',
  12. url = 'http://poisson.phc.unipi.it/~robol/wordpress/pywhoisd/',
  13. py_modules = [ 'pywhois', 'ipcalc' ],
  14. data_files = [('/etc/init.d', ['pywhois']),
  15. ('/etc', ['pywhoisd.conf', 'pywhoisd.db']),
  16. ('/usr/bin', ['pywhoisd.py']) ],
  17. )