lsantos2000 / feedjack

Automatically exported from code.google.com/p/feedjack
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

I can't run syncdb (unsupported operand type(s) for +: '__proxy__' and 'str') #21

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I can't run syncdb. See:

$ python2.4 manage.py syncdb
Error: Couldn't install apps, because there were errors in one or more models:
feedjack: unsupported operand type(s) for +: '__proxy__' and 'str'

I uses Django trunk revision 5625, python2.4 and last feedparser. My
feedjack version is 0.9.10.

Original issue reported on code.google.com by semente@riseup.net on 6 Jul 2007 at 10:26

GoogleCodeExporter commented 8 years ago
Hi, I change this line in feedjack.models:

url = models.CharField(_('url'), maxlength=100, unique=True,
help_text=_('Example') + ': http://www.planetexample.com, ' \
       'http://www.planetexample.com:8000/foo')                              

For this:

url = models.CharField(_('url'), maxlength=100, unique=True, help_text='Example:
http://www.planetexample.com, http://www.planetexample.com:8000/foo')

And syncdb works.

Original comment by semente@riseup.net on 6 Jul 2007 at 10:47

GoogleCodeExporter commented 8 years ago
Fixed in subversion. Revision 40:

http://groups.google.com/group/feedjack-updates/browse_thread/thread/f03c98c1d8a
e76a4

Please test to release a new version if there are no problems. Open a new 
ticket to
report them.

Original comment by gpicon on 9 Jul 2007 at 7:35