~launchpad-pqm/launchpad/devel

2821.3.1 by Daniel Silverstone
Added a queue ftpmaster script and sundry extra bits.
1
# Copyright 2004-2005 Canonical Ltd.  All rights reserved.
2
3
__metaclass__ = type
4
3686.2.63 by Celso Providelo
splitting sync-mirrors-list to another files and other style tweaks.
5
import sys, os
2821.3.1 by Daniel Silverstone
Added a queue ftpmaster script and sundry extra bits.
6
7
sys.path.insert(0, os.path.join(
3686.2.63 by Celso Providelo
splitting sync-mirrors-list to another files and other style tweaks.
8
    os.path.dirname(__file__), os.pardir, os.pardir, 'lib'))
9
6523.1.3 by James Henstridge
* Make sure STORM_CEXTENSIONS is set for scripts and cronscripts.
10
# Enable Storm's C extensions
11
os.environ['STORM_CEXTENSIONS'] = '1'
12