tehmaze-labs / modem

XMODEM, YMODEM and ZMODEM implementations in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NameError: name 'long_description' is not defined

devotip opened this issue · comments

in https://github.com/tehmaze-labs/modem/blob/multi-protocol/setup.py

you have
long_description = file('doc/source/about.rst').read(),

should be
long_description = open('doc/source/about.rst').read(),

fixed in https://github.com/devotip/modem.git py3.7-multi-protocol