Removed unneeded prints
This commit is contained in:
@@ -20,7 +20,6 @@ def main():
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "q", ["quicknote"])
|
||||
except getopt.GetoptError as err:
|
||||
# print help information and exit:
|
||||
print(err)
|
||||
sys.exit(2)
|
||||
if not opts:
|
||||
@@ -28,10 +27,8 @@ def main():
|
||||
|
||||
for o, a in opts:
|
||||
if o in ("-q", "--quicknote"):
|
||||
print("New quicknote")
|
||||
new_quicknote()
|
||||
else:
|
||||
assert False, "unhandled option"
|
||||
#print(mainUI.MainUI().open())
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user