tehmaze-labs / modem

XMODEM, YMODEM and ZMODEM implementations in Python
23 stars 32 forks source link

NameError: name 'long_description' is not defined #1

Open devotip opened 5 years ago

devotip commented 5 years ago

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(),

devotip commented 5 years ago

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