iamLovingJerk / pychess

Automatically exported from code.google.com/p/pychess
GNU General Public License v3.0
0 stars 0 forks source link

Patch branches/0.7: setup.py Import error #164

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
leonardo@ubuntu:~/Desktop/pychess-0.7$ pychess
Traceback (most recent call last):
  File "/usr/bin/pychess", line 30, in ?
    import pychess.Main
  File "/usr/lib/python2.4/site-packages/pychess/Main.py", line 12, in ?
    from pychess.widgets import gamewidget
  File "/usr/lib/python2.4/site-packages/pychess/widgets/gamewidget.py",
line 24, in ?
    from BoardControl import BoardControl
  File "/usr/lib/python2.4/site-packages/pychess/widgets/BoardControl.py",
line 7, in ?
    from pychess.Utils.Cord import Cord
  File "/usr/lib/python2.4/site-packages/pychess/Utils/Cord.py", line 1, in ?
    from lutils.lmove import FILE, RANK
ImportError: No module named lutils.lmove

Solve:

PACKAGES = ["pychess", "pychess.gfx", "pychess.Players", "pychess.Savers",
-           "pychess.System", "pychess.Utils", "pychess.widgets"]

+           "pychess.System", "pychess.Utils", "pychess.widgets",
+       "pychess.Utils.lutils"]

Original issue reported on code.google.com by leogregianin@gmail.com on 28 Mar 2007 at 2:39

GoogleCodeExporter commented 9 years ago
Dupe of 163

Original comment by lobais on 11 Apr 2007 at 8:59