diff options
| author | Eric Fiselier <eric@efcs.ca> | 2017-02-07 21:21:17 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2017-02-07 21:21:17 +0000 |
| commit | 357120e8a2bf774f01595cfeb522f432270d0b77 (patch) | |
| tree | c8e463821be020e5cc778afc56bc929ae69aa3b5 /libcxx/test/support | |
| parent | 86d8bd1da5eb34b922ff6d1d615bfbabd5d0f188 (diff) | |
| download | bcm5719-llvm-357120e8a2bf774f01595cfeb522f432270d0b77.tar.gz bcm5719-llvm-357120e8a2bf774f01595cfeb522f432270d0b77.zip | |
fix python3 syntax error
llvm-svn: 294355
Diffstat (limited to 'libcxx/test/support')
| -rw-r--r-- | libcxx/test/support/filesystem_dynamic_test_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/support/filesystem_dynamic_test_helper.py b/libcxx/test/support/filesystem_dynamic_test_helper.py index 1f48c952798..d2b2810d099 100644 --- a/libcxx/test/support/filesystem_dynamic_test_helper.py +++ b/libcxx/test/support/filesystem_dynamic_test_helper.py @@ -75,7 +75,7 @@ def create_fifo(source): def create_socket(source): - mode = 0600|stat.S_IFSOCK + mode = 0o600 | stat.S_IFSOCK os.mknod(sanitize(source), mode) |

