Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #718 from fweik/python_fix
python: Fix python build.
  • Loading branch information
fweik committed Jun 22, 2016
2 parents 9e37a0c + d2486bc commit cab2ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/espressomd/particle_data.pyx
Expand Up @@ -118,7 +118,7 @@ cdef class ParticleHandle:
property pos_folded:
"""Particle position (folded into central image)."""

def __set__(self):
def __set__(self, v):
raise Exception("setting a folded position is not implemented")

def __get__(self):
Expand Down Expand Up @@ -899,7 +899,7 @@ cdef class ParticleSlice:
property pos_folded:
"""Particle position (folded into central image)."""

def __set__(self):
def __set__(self, d):
raise Exception("setting a folded position is not implemented")

def __get__(self):
Expand Down

0 comments on commit cab2ff6

Please sign in to comment.