Skip to content

Commit 5a128cf

Browse files
committed
Fix octal constants
1 parent e168097 commit 5a128cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bessctl/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1692,7 +1692,7 @@ def tcpdump_module(cli, module_name, direction, gate, opts):
16921692
direction = 'out'
16931693

16941694
fifo = tempfile.mktemp()
1695-
os.mkfifo(fifo, 0600) # random people should not see packets...
1695+
os.mkfifo(fifo, 0o600) # random people should not see packets...
16961696

16971697
fd = os.open(fifo, os.O_RDWR)
16981698

0 commit comments

Comments
 (0)