diff options
| author | Pierre Lalet <pierre@droids-corp.org> | 2018-12-03 14:55:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-03 14:55:00 +0100 |
| commit | 54dafe4451d9caf9f112db513dad4f19cbe32575 (patch) | |
| tree | 8add4d53b727eb9e8bd3ae60778646a1c97fefc3 | |
| parent | b3104648122b721f00a3e7fc88a26c6212f1e17c (diff) | |
| parent | ac43d379d252474237f0e6218b51a4bce0669b42 (diff) | |
| download | miasm-54dafe4451d9caf9f112db513dad4f19cbe32575.tar.gz miasm-54dafe4451d9caf9f112db513dad4f19cbe32575.zip | |
Merge pull request #893 from commial/fix-readlink
Fix typo readlink
| -rw-r--r-- | miasm2/os_dep/linux/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/os_dep/linux/environment.py b/miasm2/os_dep/linux/environment.py index c4d0536e..4f125563 100644 --- a/miasm2/os_dep/linux/environment.py +++ b/miasm2/os_dep/linux/environment.py @@ -243,7 +243,7 @@ class FileSystem(object): sb_path = self.resolve_path(path, follow_link=False) if not os.path.islink(sb_path): return None - return os.path.readlink(sb_path) + return os.readlink(sb_path) def statfs(self): return StatFSInfo( |