A problem occurred in a Python script. Here is the
sequence of function calls leading up to the error, in the
order they occurred.
/home/user/workspace/moin-1.7/MoinMoin/request/__init__.py
in run
(self=<MoinMoin.request.request_standalone.Request object at 0x103cad0>)
- 1305 self.page.send_page()
- 1306 else:
- 1307 handler(self.page.page_name, self)
- 1308
- 1309 # every action that didn't use to raise MoinMoinFinish must call this now:
- handler
= <function execute at 0xf78e60>
- self
= <MoinMoin.request.request_standalone.Request object at 0x103cad0>
- self.page
= <MoinMoin.Page.Page object at 0xe42410>
- self.page.page_name
= u'SyncJob'
/home/user/workspace/moin-1.7/MoinMoin/action/SyncPages.py
in execute
(pagename=u'SyncJob', request=<MoinMoin.request.request_standalone.Request object at 0x103cad0>)
- 492
- 493
- 494 def execute(pagename, request):
- 495 ActionClass(pagename, request).render()
- 496
- global
ActionClass
= <class 'MoinMoin.action.SyncPages.ActionClass'>
- pagename
= u'SyncJob'
- request
= <MoinMoin.request.request_standalone.Request object at 0x103cad0>
- ).render undefined
/home/user/workspace/moin-1.7/MoinMoin/action/SyncPages.py
in render
(self=<MoinMoin.action.SyncPages.ActionClass object at 0x103cb10>)
- 171 _ = self.request.getText
- 172
- 173 params = self.fix_params(self.parse_page())
- 174
- 175 try:
- params undefined
- self
= <MoinMoin.action.SyncPages.ActionClass object at 0x103cb10>
- self.fix_params
= <bound method ActionClass.fix_params of <MoinMoin.action.SyncPages.ActionClass object at 0x103cb10>>
- self.parse_page
= <bound method ActionClass.parse_page of <MoinMoin.action.SyncPages.ActionClass object at 0x103cb10>>
/home/user/workspace/moin-1.7/MoinMoin/action/SyncPages.py
in fix_params
(self=<MoinMoin.action.SyncPages.ActionClass object at
0x103cb10>, params={'direction': 1, 'groupList': None,
'localPrefix': u'TestWiki/', 'pageList': None, 'pageMatch': u'*.*',
'password': None, 'remotePrefix': '', 'remoteWiki': u'TestWiki',
'user': None})
- 127
- 128 if params["pageMatch"] is not None:
- 129 params["pageMatch"] = re.compile(params["pageMatch"], re.U)
- 130
- 131 # we do not support matching or listing pages if there is a group of pages
- params = {'direction': 1, 'groupList': None,
'localPrefix': u'TestWiki/', 'pageList': None, 'pageMatch': u'*.*',
'password': None, 'remotePrefix': '', 'remoteWiki': u'TestWiki',
'user': None}
- global
re
= <module 're' from '/usr/lib64/python2.5/re.pyc'>
- re.compile
= <function compile at 0x2b0a2726a230>
- re.U
= 32
/usr/lib64/python2.5/re.py
in compile
(pattern=u'*.*', flags=32)
- 178 def compile(pattern, flags=0):
- 179 "Compile a regular expression pattern, returning a pattern object."
- 180 return _compile(pattern, flags)
- 181
- 182 def purge():
- global
_compile
= <function _compile at 0x2b0a2726a410>
- pattern
= u'*.*'
- flags
= 32
/usr/lib64/python2.5/re.py
in _compile
(*key=(u'*.*', 32))
- 231 p = sre_compile.compile(pattern, flags)
- 232 except error, v:
- 233 raise error, v # invalid expression
- 234 if len(_cache) >= _MAXCACHE:
- 235 _cache.clear()
- global
error
= <class 'sre_constants.error'>
- v
= error('nothing to repeat',)