Skip to content

Commit

Permalink
Merge pull request #70 from epfremmer/patch-1
Browse files Browse the repository at this point in the history
Fix arg not defined error
  • Loading branch information
josegonzalez authored Oct 11, 2017
2 parents f157ea1 + 27a1ba2 commit 9d31ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/github-backup
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def backup_repositories(args, output_directory, repositories):
repo_dir,
skip_existing=args.skip_existing,
bare_clone=args.bare_clone,
lfs_clone=arg.lfs_clone)
lfs_clone=args.lfs_clone)

download_wiki = (args.include_wiki or args.include_everything)
if repository['has_wiki'] and download_wiki:
Expand All @@ -561,7 +561,7 @@ def backup_repositories(args, output_directory, repositories):
os.path.join(repo_cwd, 'wiki'),
skip_existing=args.skip_existing,
bare_clone=args.bare_clone,
lfs_clone=arg.lfs_clone)
lfs_clone=args.lfs_clone)

if args.include_issues or args.include_everything:
backup_issues(args, repo_cwd, repository, repos_template)
Expand Down

0 comments on commit 9d31ccf

Please sign in to comment.