summaryrefslogtreecommitdiff
path: root/aerialvision/lexyaccbookmark.py
diff options
context:
space:
mode:
authorAaron Barnes <[email protected]>2023-07-05 16:20:56 -0400
committerGitHub <[email protected]>2023-07-05 16:20:56 -0400
commit712b6104e7399b2dd42c25b4cd788f0f36b5b39d (patch)
treee6fb962a78b5ee6609c2a8d13cf753ffe2e98188 /aerialvision/lexyaccbookmark.py
parent9eaf173e6801a6bbb0f4acd13ea064fbd3054be8 (diff)
parent58beccb510bb892de56b466ac764f24297affebd (diff)
Merge branch 'dev' into fix-stats
Diffstat (limited to 'aerialvision/lexyaccbookmark.py')
-rw-r--r--aerialvision/lexyaccbookmark.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/aerialvision/lexyaccbookmark.py b/aerialvision/lexyaccbookmark.py
index 42c6b40..7aa2f80 100644
--- a/aerialvision/lexyaccbookmark.py
+++ b/aerialvision/lexyaccbookmark.py
@@ -108,7 +108,7 @@ def parseMe():
def t_error(t):
- print "Illegal character '%s'" % t.value[0]
+ print("Illegal character '%s'" % t.value[0])
t.lexer.skip(1)
lex.lex()
@@ -150,7 +150,7 @@ def parseMe():
pass
else:
- print 'An Parsing Error has occurred'
+ print('An Parsing Error has occurred')
@@ -159,7 +159,7 @@ def parseMe():
def p_error(p):
if p:
- print("Syntax error at '%s'" % p.value)
+ print(("Syntax error at '%s'" % p.value))
else:
print("Syntax error at EOF")
@@ -168,7 +168,7 @@ def parseMe():
try:
file = open(os.environ['HOME'] + '/.gpgpu_sim/aerialvision/bookmarks.txt', 'r')
inputData = file.readlines()
- except IOError,e:
+ except IOError as e:
if e.errno == 2:
inputData = ''
else:
@@ -178,3 +178,4 @@ def parseMe():
yacc.parse(x[0:-1]) # ,debug=True)
return listBookmarks
+