Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab3edf commit 9ec9d22Copy full SHA for 9ec9d22
1 file changed
lib/core/common.py
@@ -1481,18 +1481,21 @@ def pushValue(value):
1481
"""
1482
Push value to the stack
1483
1484
+
1485
kb.valueStack.append(value)
1486
1487
def popValue():
1488
1489
Pop value from the stack
1490
1491
1492
return kb.valueStack.pop()
1493
1494
def wasLastRequestError():
1495
1496
Returns True if the last web request resulted in a (recognized) DBMS error page
1497
1498
1499
return kb.lastErrorPage and kb.lastErrorPage[0]==kb.lastRequestUID
1500
1501
def beep():
@@ -1511,6 +1514,6 @@ def beep():
1511
1514
1512
1515
audio.close()
1513
1516
except:
- print '\a'
1517
+ dataToStdout('\a', True)
1518
else:
1519
0 commit comments