Skip to content

Commit b28bbc4

Browse files
authored
Update main.py
1 parent e856456 commit b28bbc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

github_deploy/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ def list_commands(self, ctx):
1717
def get_command(self, ctx, name):
1818
ns = {}
1919
fn = os.path.join(plugin_folder, name + '.py')
20-
20+
2121
if os.path.exists(fn):
2222
with open(fn) as f:
2323
code = compile(f.read(), fn, 'exec')
2424
eval(code, ns, ns)
2525
return ns['main']
26-
26+
2727
ctx.fail("Invalid Command: {name}".format(name=name))
2828

2929

0 commit comments

Comments
 (0)