Ticket #1394 (closed defect: fixed)
svn_fs.py failed with TypeError(__init__() should return None)
| Reported by: | Topia <topia@…> | Owned by: | jonas |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.8.2 |
| Component: | general | Version: | devel |
| Severity: | normal | Keywords: | |
| Cc: |
Description
repository sync fails with oops. such as:
File ".../python/lib/python2.5/site-packages/trac/versioncontrol/svn_fs.py", line 118, in __init__
self.pool = Pool(self, None)
TypeError: __init__() should return None
fixed with:
-
trac/versioncontrol/svn_fs.py
76 76 except TypeError: 77 77 self.close() 78 78 raise 79 80 return self81 79 82 80 def __call__(self): 83 81 return self.pool
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


