From 671055bb4a64177eb74774833578f7a5f1f624ff Mon Sep 17 00:00:00 2001 From: Sam Schott Date: Thu, 12 Mar 2020 22:51:34 +0000 Subject: [PATCH] fix typo --- maestral/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maestral/cli.py b/maestral/cli.py index 87959b37..4f74d478 100755 --- a/maestral/cli.py +++ b/maestral/cli.py @@ -149,7 +149,7 @@ def catch_maestral_errors(func): def format_table(rows=None, columns=None, headers=None, padding_right=2): - if (rows and comlumns) or not (rows or columns): + if (rows and columns) or not (rows or columns): raise ValueError('Must give either rows or columns as input.') import textwrap