Skip to content

Commit

Permalink
Merge pull request #16 from gisaia/bug/#7
Browse files Browse the repository at this point in the history
fix bug #7
  • Loading branch information
sylvaingaudan authored Jul 31, 2024
2 parents e8d26ea + a4bec90 commit d8db79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arlas/cli/configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def list_configurations():
for (name, conf) in Configuration.settings.arlas.items():
confs.append([name, conf.server.location])
tab = PrettyTable(["name", "url"], sortby="name", align="l")
tab.add_rows(confs[1:])
tab.add_rows(confs)
print(tab)


Expand Down

0 comments on commit d8db79f

Please sign in to comment.