Skip to content

Commit e522fcf

Browse files
committed
remove merge errors
1 parent 0b94194 commit e522fcf

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

core/alert.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -143,36 +143,36 @@ def error(content):
143143

144144
if "--v" in sys.argv or "--very-verbose" in sys.argv:
145145
sys.stdout.buffer.write(
146-
(color.color_cmd("red")
146+
(color_cmd("red")
147147
+ "[X] [{0}] ".format(now())
148-
+ color.color_cmd("yellow")
148+
+ color_cmd("yellow")
149149
+ "Command entered by the user: "
150-
+ color.color_cmd("green")
150+
+ color_cmd("green")
151151
+ "python " + " ".join(sys.argv)
152152
+ "\n"
153153
).encode("utf8")
154154
)
155155

156156
if "---v" in sys.argv or "--extreme-verbose" in sys.argv:
157157
sys.stdout.buffer.write(
158-
(color.color_cmd("red")
158+
(color_cmd("red")
159159
+ "[X] [{0}] ".format(now())
160-
+ color.color_cmd("yellow")
160+
+ color_cmd("yellow")
161161
+ "Command entered by the user: "
162-
+ color.color_cmd("green")
162+
+ color_cmd("green")
163163
+ "python " + " ".join(sys.argv)
164164
+ "\n"
165165
).encode("utf8")
166166
)
167167
sys.stdout.buffer.write(
168-
(color.color_cmd("red")
168+
(color_cmd("red")
169169
+ "[X] [{0}] ".format(now())
170170
+ "Stack Trace \n"
171171
).encode("utf8")
172172
)
173173
for line in traceback.format_stack():
174174
sys.stdout.buffer.write(
175-
(color.color_cmd("red")
175+
(color_cmd("red")
176176

177177
+ line
178178
).encode("utf8")

0 commit comments

Comments
 (0)