Skip to content

Commit

Permalink
python: Remove Shortening messages in pygrass messages (#3324)
Browse files Browse the repository at this point in the history
Was fixed in C code in 9b61d2e
  • Loading branch information
echoix committed Jan 3, 2024
1 parent 47aa6e1 commit e4431cc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions python/grass/pygrass/messages/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ def message_server(lock, conn):
sys.exit()

message = data[1]
# libgis limitation
if isinstance(message, str):
if len(message) >= 2000:
message = message[:1999]

if message_type == "PERCENT":
n = int(data[1])
Expand Down

0 comments on commit e4431cc

Please sign in to comment.