~duplicity-team/duplicity/i18n-for-0.7

« back to all changes in this revision

Viewing changes to duplicity/globals.py

  • Committer: Kenneth Loafman
  • Date: 2009-09-18 14:16:34 UTC
  • Revision ID: kenneth@loafman.com-20090918141634-ybi90cmfuh6svu6j
Applied "426282 [PATCH] par2 creating support", corrected some coding format issues and made sure all unit tests passed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
1
2
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
2
3
#
3
4
# Copyright 2002 Ben Escoto <ben@emerose.org>
21
22
 
22
23
"""Store global configuration information"""
23
24
 
24
 
import socket, sys, os
 
25
import socket, os
25
26
 
26
27
# The current version of duplicity
27
28
version = "$version"
178
179
# circumstances. the default should absolutely always be True unless
179
180
# you know what you are doing.
180
181
ignore_errors = False
 
182
 
 
183
# if True the par2 recovery files will be created.
 
184
par2 = False