~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/vfs.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
42
42
def vfs_enabled():
43
43
    """Is the VFS enabled ?
44
44
 
45
 
    the VFS is disabled when the NO_SMART_VFS environment variable is set.
 
45
    the VFS is disabled when the BZR_NO_SMART_VFS environment variable is set.
46
46
 
47
47
    :return: True if it is enabled.
48
48
    """
49
 
    return not 'NO_SMART_VFS' in os.environ
 
49
    return not 'BZR_NO_SMART_VFS' in os.environ
50
50
 
51
51
 
52
52
class VfsRequest(request.SmartServerRequest):