mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Cosmetics
This commit is contained in:
parent
8a9a57c709
commit
7effd0c301
|
@ -1500,12 +1500,15 @@ def beep():
|
||||||
Does an audible beep sound
|
Does an audible beep sound
|
||||||
Reference: http://de3.aminet.net/dev/src/clr.py.txt
|
Reference: http://de3.aminet.net/dev/src/clr.py.txt
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if sys.platform == 'linux2':
|
if sys.platform == 'linux2':
|
||||||
try:
|
try:
|
||||||
audio = file('/dev/audio', 'wb')
|
audio = file('/dev/audio', 'wb')
|
||||||
|
|
||||||
for i in xrange(250):
|
for i in xrange(250):
|
||||||
audio.write(chr(32) * 4)
|
audio.write(chr(32) * 4)
|
||||||
audio.write(chr(0) * 4)
|
audio.write(chr(0) * 4)
|
||||||
|
|
||||||
audio.close()
|
audio.close()
|
||||||
except:
|
except:
|
||||||
print '\a'
|
print '\a'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user