~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to MoinMoin/_tests/maketestwiki.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
filename = globals().get("__file__") or sys.argv[0]
16
16
moinpath = os.path.abspath(os.path.join(os.path.dirname(filename), os.pardir, os.pardir))
 
17
sys.path.insert(0, moinpath)
17
18
 
18
19
from MoinMoin.support import tarfile
19
20
 
61
62
    untarUnderlay()
62
63
 
63
64
if __name__ == '__main__':
64
 
    sys.path.insert(0, moinpath)
65
65
    run()
66
66