summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Walker <walker@pobox.com>2021-01-16 15:34:12 -0500
committerRoland Walker <walker@pobox.com>2021-01-16 15:34:27 -0500
commit10e4d7d334aedc1fd3b404d8e175188e6344a9fc (patch)
tree0ce3516af8623b5deb1e8db40e02f2d4187c9878
parentb1984e215132a34ab2e06799a16e8e511a55e51c (diff)
fix a couple of irregular indentations
-rw-r--r--mycli/packages/special/iocommands.py2
-rw-r--r--mycli/sqlcompleter.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/mycli/packages/special/iocommands.py b/mycli/packages/special/iocommands.py
index 58066b8..01f3c7b 100644
--- a/mycli/packages/special/iocommands.py
+++ b/mycli/packages/special/iocommands.py
@@ -302,7 +302,7 @@ def execute_system_command(arg, **_):
usage = "Syntax: system [command].\n"
if not arg:
- return [(None, None, None, usage)]
+ return [(None, None, None, usage)]
try:
command = arg.strip()
diff --git a/mycli/sqlcompleter.py b/mycli/sqlcompleter.py
index 73b9b44..3656aa6 100644
--- a/mycli/sqlcompleter.py
+++ b/mycli/sqlcompleter.py
@@ -72,7 +72,7 @@ class SQLCompleter(Completer):
if name and ((not self.name_pattern.match(name))
or (name.upper() in self.reserved_words)
or (name.upper() in self.functions)):
- name = '`%s`' % name
+ name = '`%s`' % name
return name