Skip to content

Commit

Permalink
removed wrongful inclusion of class parameter
Browse files Browse the repository at this point in the history
Accidentally included passing the entire class object as an argument to `self`.
  • Loading branch information
ecaldwell committed Feb 14, 2014
1 parent b6c5e50 commit b9640cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/migrateAccount.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
myAgol = Admin('<username>') # Replace <username> your ADMIN account

# for migrating a single account...
myAgol.migrateAccount(myAgol, '<userFrom>', '<userTo>') # Replace with usernames between which you are moving items
myAgol.migrateAccount('<userFrom>', '<userTo>') # Replace with usernames between which you are moving items

# for migrating a batch of accounts...
myAgol.migrateAccounts(myAgol, <path to user mapping CSV>) # Replace with path to CSV file with col1=userFrom, col2=userTo
myAgol.migrateAccounts(<path to user mapping CSV>) # Replace with path to CSV file with col1=userFrom, col2=userTo

0 comments on commit b9640cd

Please sign in to comment.