Skip to content

Commit

Permalink
Sample downward experiment: don't require that the current user is pa…
Browse files Browse the repository at this point in the history
…rt of USERS dict.
  • Loading branch information
jendrikseipp committed Nov 16, 2020
1 parent cbdbeb5 commit d6b1d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/downward/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
remote_repos="/infai/seipp/projects",
),
}
USER = USERS[getpass.getuser()]
USER = USERS.get(getpass.getuser())


def parse_args():
Expand Down

0 comments on commit d6b1d1e

Please sign in to comment.