Browse Source

replaced /usr/bin/python with /usr/bin/env python

master
atinm 13 years ago committed by Worros
parent
commit
644b2d7849
  1. 2
      pyfpdb/AlchemyFacilities.py
  2. 2
      pyfpdb/AlchemyMappings.py
  3. 2
      pyfpdb/AlchemyTables.py
  4. 2
      pyfpdb/Anonymise.py
  5. 2
      pyfpdb/Card.py
  6. 2
      pyfpdb/Charset.py
  7. 2
      pyfpdb/DerivedStats.py
  8. 2
      pyfpdb/Exceptions.py
  9. 2
      pyfpdb/Filters.py
  10. 2
      pyfpdb/FullTiltPokerSummary.py
  11. 2
      pyfpdb/GuiAutoImport.py
  12. 2
      pyfpdb/GuiBulkImport.py
  13. 2
      pyfpdb/GuiDatabase.py
  14. 2
      pyfpdb/GuiGraphViewer.py
  15. 2
      pyfpdb/GuiImapFetcher.py
  16. 2
      pyfpdb/GuiLogView.py
  17. 2
      pyfpdb/GuiPlayerStats.py
  18. 2
      pyfpdb/GuiPositionalStats.py
  19. 2
      pyfpdb/GuiPrefs.py
  20. 2
      pyfpdb/GuiRingPlayerStats.py
  21. 2
      pyfpdb/GuiSessionViewer.py
  22. 2
      pyfpdb/GuiStove.py
  23. 2
      pyfpdb/GuiTourneyGraphViewer.py
  24. 2
      pyfpdb/GuiTourneyImport.py
  25. 2
      pyfpdb/GuiTourneyPlayerStats.py
  26. 2
      pyfpdb/GuiTourneyViewer.py
  27. 2
      pyfpdb/Hand.py
  28. 2
      pyfpdb/HandHistory.py
  29. 2
      pyfpdb/HandHistoryConverter.py
  30. 2
      pyfpdb/IdentifySite.py
  31. 2
      pyfpdb/ImapFetcher.py
  32. 2
      pyfpdb/L10n.py
  33. 2
      pyfpdb/Options.py
  34. 2
      pyfpdb/PokerStarsSummary.py
  35. 2
      pyfpdb/ScriptAddStatToRegression.py
  36. 2
      pyfpdb/ScriptFetchWinamaxResults.py
  37. 2
      pyfpdb/SitenameSummary.py
  38. 2
      pyfpdb/SplitHandHistory.py
  39. 2
      pyfpdb/Stove.py
  40. 2
      pyfpdb/Summaries.py
  41. 2
      pyfpdb/SummaryEverleaf.py
  42. 2
      pyfpdb/TourneyFilters.py
  43. 2
      pyfpdb/TourneySummary.py
  44. 2
      pyfpdb/WinamaxSummary.py
  45. 2
      pyfpdb/fpdb.pyw
  46. 2
      pyfpdb/fpdb_import.py
  47. 2
      pyfpdb/regression-test-files/cash/TheBigGame/TBG-grabber.py
  48. 2
      pyfpdb/test_Database.py
  49. 2
      pyfpdb/test_Everleaf.py
  50. 2
      pyfpdb/test_FullTilt.py
  51. 2
      pyfpdb/test_PokerStars.py
  52. 2
      pyfpdb/windows_make_bats.py
  53. 2
      regression-test/PrintHand.py
  54. 2
      regression-test/PrintPlayerHudData.py
  55. 2
      regression-test/fpdb_util_lib.py
  56. 2
      run_fpdb.py
  57. 2
      setup.py
  58. 4
      utils/fix_table_desc.py

2
pyfpdb/AlchemyFacilities.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Grigorij Indigirkin

2
pyfpdb/AlchemyMappings.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Grigorij Indigirkin

2
pyfpdb/AlchemyTables.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Grigorij Indigirkin

2
pyfpdb/Anonymise.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Carl Gherardi

2
pyfpdb/Card.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/Charset.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Mika Bostrom

2
pyfpdb/DerivedStats.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/Exceptions.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Matt Turnbull

2
pyfpdb/Filters.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/FullTiltPokerSummary.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiAutoImport.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiBulkImport.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiDatabase.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/GuiGraphViewer.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiImapFetcher.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/GuiLogView.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/GuiPlayerStats.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/GuiPositionalStats.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiPrefs.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/GuiRingPlayerStats.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiSessionViewer.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiStove.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/GuiTourneyGraphViewer.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/GuiTourneyImport.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/GuiTourneyPlayerStats.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/GuiTourneyViewer.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/Hand.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/HandHistory.py

@ -192,4 +192,4 @@ if __name__== "__main__":
print h.AWARDS
for p in h.PLAYERS.keys():
print h.PLAYERS[p]
print h.PLAYERS[p]

2
pyfpdb/HandHistoryConverter.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/IdentifySite.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Chaz Littlejohn

2
pyfpdb/ImapFetcher.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/L10n.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/Options.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Ray E. Barker

2
pyfpdb/PokerStarsSummary.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/ScriptAddStatToRegression.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2011 Carl Gherardi

2
pyfpdb/ScriptFetchWinamaxResults.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2011 Carl Gherardi

2
pyfpdb/SitenameSummary.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/SplitHandHistory.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Chaz Littlejohn

2
pyfpdb/Stove.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: iso-8859-15
#
# stove.py

2
pyfpdb/Summaries.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/SummaryEverleaf.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2009-2010 Eric Blade, and the FPDB team.

2
pyfpdb/TourneyFilters.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2010 Steffen Schaumburg

2
pyfpdb/TourneySummary.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Stephane Alessio

2
pyfpdb/WinamaxSummary.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2011 Carl Gherardi

2
pyfpdb/fpdb.pyw

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/fpdb_import.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
pyfpdb/regression-test-files/cash/TheBigGame/TBG-grabber.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Script to fetch all the of the data file from thebiggame.pokerstars.net"""

2
pyfpdb/test_Database.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
pyfpdb/test_Everleaf.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Matt Turnbull

2
pyfpdb/test_FullTilt.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Matt Turnbull

2
pyfpdb/test_PokerStars.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Matt Turnbull

2
pyfpdb/windows_make_bats.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Carl Gherardi

2
regression-test/PrintHand.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
regression-test/PrintPlayerHudData.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
regression-test/fpdb_util_lib.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Steffen Schaumburg

2
run_fpdb.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2008-2010 Carl Gherardi

2
setup.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Created by Mika Bostrom, released into the public domain as far as legally possible.

4
utils/fix_table_desc.py

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright 2009-2010 Ray E. Barker
@ -54,4 +54,4 @@ for line in re.split("\n", desc):
table += "|+\n" + line + "\n"
table += "|}\n"
print table
print table

Loading…
Cancel
Save