diff options
| author | Steven Knight <knight@baldmt.com> | 2008-12-12 06:16:31 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2008-12-12 06:16:31 (GMT) |
| commit | 6554d8631debd788d6bad226d098daee080ca20e (patch) | |
| tree | f468f63915d4ba1b0ea3cc2d064d5ce922cfe6e4 /src/engine/SCons/Environment.py | |
| parent | 8e1e691178fb24207d0e073a8c67bd8810211396 (diff) | |
| download | SCons-6554d8631debd788d6bad226d098daee080ca20e.zip SCons-6554d8631debd788d6bad226d098daee080ca20e.tar.gz SCons-6554d8631debd788d6bad226d098daee080ca20e.tar.bz2 | |
Issue 2255: Handle scanning of UTF-8 and UTF-16 files. (Greg Spencer)
Diffstat (limited to 'src/engine/SCons/Environment.py')
| -rw-r--r-- | src/engine/SCons/Environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py index f6123b9..2304f2f 100644 --- a/src/engine/SCons/Environment.py +++ b/src/engine/SCons/Environment.py @@ -429,7 +429,7 @@ class SubstitutionEnvironment: self._dict[key] = value def get(self, key, default=None): - "Emulates the get() method of dictionaries.""" + """Emulates the get() method of dictionaries.""" return self._dict.get(key, default) def has_key(self, key): |
