Skip to content

Commit

Permalink
fix extra parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
godbout committed Apr 7, 2022
1 parent 8abb387 commit de76f1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions itermocil.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ def process_file(self):
total_pane_count -= 1

if 'windows' not in self.parsed_config:
print("ERROR: No windows defined in ") + self.file
print("ERROR: No windows defined in " + self.file)
sys.exit(1)

for num, window in enumerate(self.parsed_config['windows']):
Expand Down Expand Up @@ -719,7 +719,7 @@ def main():

# Check teamocil file exists
if not os.path.isfile(filepath):
print("ERROR: There is no file at: ") + filepath
print("ERROR: There is no file at: " + filepath)
sys.exit(1)

# If --show then output and exit()
Expand Down

0 comments on commit de76f1c

Please sign in to comment.